From: Stefano Zacchiroli Date: Fri, 6 Feb 2004 12:29:30 +0000 (+0000) Subject: added -g flag to ocamlc per default X-Git-Tag: V_0_2_3~18 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=51f54cc6883cbb44067fee5387462e7ac83dad1c;p=helm.git added -g flag to ocamlc per default --- diff --git a/helm/ocaml/Makefile.common.in b/helm/ocaml/Makefile.common.in index 39c99255b..cefbf646d 100644 --- a/helm/ocaml/Makefile.common.in +++ b/helm/ocaml/Makefile.common.in @@ -13,9 +13,11 @@ OCAMLFIND_DEST_DIR = @OCAMLFIND_DEST_DIR@ PREPROCOPTIONS = -pp camlp4o PREREQ = OCAMLOPTIONS = -package "$(REQUIRES)" -predicates "$(PREDICATES)" -OCAMLC = ocamlfind ocamlc $(OCAMLOPTIONS) $(PREPROCOPTIONS) -OCAMLOPT = ocamlfind ocamlopt $(OCAMLOPTIONS) $(PREPROCOPTIONS) -OCAMLDEP = ocamlfind ocamldep $(PREPROCOPTIONS) +OCAMLDEBUGOPTIONS = -g +OCAMLFIND = ocamlfind +OCAMLC = $(OCAMLFIND) ocamlc $(OCAMLDEBUGOPTIONS) $(OCAMLOPTIONS) $(PREPROCOPTIONS) +OCAMLOPT = $(OCAMLFIND) opt $(OCAMLOPTIONS) $(PREPROCOPTIONS) +OCAMLDEP = $(OCAMLFIND) ocamldep $(PREPROCOPTIONS) OCAMLLEX = ocamllex OCAMLYACC = ocamlyacc