From: Ferruccio Guidi Date: Tue, 27 Jan 2004 13:36:06 +0000 (+0000) Subject: opt goal fixed X-Git-Tag: V_0_2_3~134 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=e17b6a0433eab10b57954fd6936907bf3bcaada8;p=helm.git opt goal fixed --- diff --git a/helm/ocaml/cic_disambiguation/Makefile b/helm/ocaml/cic_disambiguation/Makefile index cadca9413..a3d6297e3 100644 --- a/helm/ocaml/cic_disambiguation/Makefile +++ b/helm/ocaml/cic_disambiguation/Makefile @@ -26,12 +26,20 @@ cicTextualLexer2.cmo: cicTextualLexer2.ml $(OCAMLC) -pp "camlp4o $(LEXER_P4_OPTS)" -c $< cicTextualParser2.cmo: cicTextualParser2.ml macro.cmo pa_unicode_macro.cmo $(OCAMLC) -pp "camlp4o $(PARSER_P4_OPTS)" -c $< +cicTextualLexer2.cmx: cicTextualLexer2.ml + $(OCAMLOPT) -pp "camlp4o $(LEXER_P4_OPTS)" -c $< +cicTextualParser2.cmx: cicTextualParser2.ml macro.cmo pa_unicode_macro.cmo + $(OCAMLOPT) -pp "camlp4o $(PARSER_P4_OPTS)" -c $< %_notation.cmo: %_notation.ml cicTextualParser2.cmo $(OCAMLC) -pp "camlp4o $(PARSER_P4_OPTS)" -c $< +%_notation.cmx: %_notation.ml cicTextualParser2.cmx + $(OCAMLOPT) -pp "camlp4o $(PARSER_P4_OPTS)" -c $< pa_unicode_macro.cmo: pa_unicode_macro.ml macro.cmo $(OCAMLC) -pp "camlp4o $(PA_P4_OPTS)" -c $< +pa_unicode_macro.cmx: pa_unicode_macro.ml macro.cmx + $(OCAMLOPT) -pp "camlp4o $(PA_P4_OPTS)" -c $< LOCAL_LINKOPTS = -linkpkg $(PACKAGE).cma test: test_lexer test_parser @@ -62,4 +70,6 @@ disambiguateTypes.cmi: disambiguateTypes.mli $(OCAMLC) -c -rectypes $< disambiguateTypes.cmo: disambiguateTypes.ml disambiguateTypes.cmi $(OCAMLC) -c -rectypes $< +disambiguateTypes.cmx: disambiguateTypes.ml disambiguateTypes.cmi + $(OCAMLOPT) -c -rectypes $<