]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/content_pres/Makefile
made executable again
[helm.git] / helm / software / components / content_pres / Makefile
index 0cd8b4226f763100b6c19beb76080536e7084d4d..7501004fbc5f679019691ea2f63fcc25abb89602 100644 (file)
@@ -1,20 +1,20 @@
 PACKAGE = content_pres
 PREDICATES =
 
-INTERFACE_FILES =              \
-       renderingAttrs.mli      \
-       cicNotationLexer.mli    \
-       cicNotationParser.mli   \
-       mpresentation.mli       \
-       box.mli                 \
-       content2presMatcher.mli \
-       termContentPres.mli     \
-       cicNotationPres.mli     \
-       boxPp.mli               \
-       content2pres.mli        \
-       sequent2pres.mli        \
+INTERFACE_FILES =               \
+       renderingAttrs.mli       \
+       cicNotationLexer.mli     \
+       cicNotationParser.mli    \
+       mpresentation.mli        \
+       box.mli                  \
+       content2presMatcher.mli  \
+       termContentPres.mli      \
+       boxPp.mli                \
+       cicNotationPres.mli      \
+       content2pres.mli         \
+       sequent2pres.mli         \
        $(NULL)
-IMPLEMENTATION_FILES =         \
+IMPLEMENTATION_FILES =          \
        $(INTERFACE_FILES:%.mli=%.ml)
 
 cicNotationPres.cmi: OCAMLOPTIONS += -rectypes
@@ -46,9 +46,9 @@ include ../Makefile.common
 # <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"
 cicNotationLexer.cmo: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
 cicNotationParser.cmo: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
 cicNotationLexer.cmx: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
@@ -56,5 +56,6 @@ cicNotationParser.cmx: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
 cicNotationLexer.ml.annot: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
 cicNotationParser.ml.annot: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
 depend: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
+depend.opt: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS)
 # </cross>