]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/grafite_parser/Makefile
parameter sintax added to axiom statement
[helm.git] / helm / software / components / grafite_parser / Makefile
index 434eaceaa1e9927ed3fb266489cb850cd620f024..892325d52a33bcfda608e368bf3814242abf9edd 100644 (file)
@@ -5,24 +5,25 @@ INTERFACE_FILES =                     \
        dependenciesParser.mli          \
        grafiteParser.mli               \
        cicNotation2.mli                \
-       grafiteDisambiguator.mli        \
+       nEstatus.mli                    \
        grafiteDisambiguate.mli         \
-       grafiteWalker.mli               \
+       print_grammar.mli               \
        $(NULL)
 IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml)
 
-all: test_parser print_grammar test_dep
+all: test_parser test_dep
 clean: clean_tests
 
 # <cross> cross compatibility among ocaml 3.09 and ocaml 3.08, to be removed as
 # soon as we have ocaml 3.09 everywhere and "loc" occurrences are replaced by
 # "_loc" occurrences
-UTF8DIR = $(shell $(OCAMLFIND) query helm-utf8_macros)
-ULEXDIR = $(shell $(OCAMLFIND) query ulex)
-MY_SYNTAXOPTIONS = -pp "camlp4o -I $(UTF8DIR) -I $(ULEXDIR) pa_extend.cmo pa_ulex.cma pa_unicode_macro.cma -loc loc"
+UTF8DIR = $(shell $(OCAMLFIND) query helm-syntax_extensions)
+ULEXDIR = $(shell $(OCAMLFIND) query ulex08)
+MY_SYNTAXOPTIONS = -pp "camlp5o -I $(UTF8DIR) -I $(ULEXDIR) pa_extend.cmo pa_ulex.cma pa_unicode_macro.cma -loc loc"
 grafiteParser.cmo: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
 grafiteParser.cmx: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
 depend: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
+depend.opt: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
 # </cross>
 #
 grafiteParser.cmo: OCAMLC = $(OCAMLC_P4)