summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2017-10-03 11:11:47 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2018-02-06 11:12:27 +0100
commit69559331d2848a1a6d4d67624f35f9bfa1c2ce58 (patch)
tree3747e7c144a667ebe27825db4849339f0a90f5c8
parente24c6be23caecf13dac5eb5170f3c810e2c42bcf (diff)
downloadperl_checker-69559331d2848a1a6d4d67624f35f9bfa1c2ce58.tar
perl_checker-69559331d2848a1a6d4d67624f35f9bfa1c2ce58.tar.gz
perl_checker-69559331d2848a1a6d4d67624f35f9bfa1c2ce58.tar.bz2
perl_checker-69559331d2848a1a6d4d67624f35f9bfa1c2ce58.tar.xz
perl_checker-69559331d2848a1a6d4d67624f35f9bfa1c2ce58.zip
fix debugsources subpkg
-rw-r--r--src/Makefile2
-rw-r--r--src/OCamlMakefile4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index 5df6a31..9f718c3 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,5 +1,5 @@
# OCAMLC = ocamlcp -p a
-OCAMLBCFLAGS = -w A -w e
+OCAMLBCFLAGS = -g -w A -w e
YFLAGS = -v
TRASH = parser.output perl_checker.html TAGS
RESULT = perl_checker
diff --git a/src/OCamlMakefile b/src/OCamlMakefile
index 342d4c4..cc71121 100644
--- a/src/OCamlMakefile
+++ b/src/OCamlMakefile
@@ -142,13 +142,13 @@ NCRESULT := $(addsuffix $(NCSUFFIX), $(RESULT))
TOPRESULT := $(addsuffix $(TOPSUFFIX), $(RESULT))
ifndef OCAMLC
- OCAMLC := ocamlc
+ OCAMLC := ocamlc -g
endif
export OCAMLC
ifndef OCAMLOPT
- OCAMLOPT := ocamlopt
+ OCAMLOPT := ocamlopt -g
endif
export OCAMLOPT