]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/gTopLevel/Makefile
* added test .html file for mozilla plugin
[helm.git] / helm / gTopLevel / Makefile
index e449673058fbdb9d8d9aa028f2e9ff0f2dd6a527..5f8063939e54cd990cd886dc4702f5ee658726ab 100644 (file)
@@ -11,25 +11,23 @@ OCAMLC = $(OCAMLFIND) ocamlc -thread $(OCAMLOPTIONS)
 OCAMLOPT = $(OCAMLFIND) ocamlopt -thread $(OCAMLOPTIONS)
 OCAMLDEP = ocamldep -pp camlp4o
 
-LIBRARIES = $(shell ocamlfind query -recursive -predicates "byte $(PREDICATES)" -format "%d/%a" $(REQUIRES))
-LIBRARIES_OPT = $(shell ocamlfind query -recursive -predicates "native $(PREDICATES)" -format "%d/%a" $(REQUIRES))
+LIBRARIES = $(shell $(OCAMLFIND) query -recursive -predicates "byte $(PREDICATES)" -format "%d/%a" $(REQUIRES))
+LIBRARIES_OPT = $(shell $(OCAMLFIND) query -recursive -predicates "native $(PREDICATES)" -format "%d/%a" $(REQUIRES))
 
 all: styles gTopLevel
 opt: styles gTopLevel.opt
 
-DEPOBJS = \
-        proofEngine.ml proofEngine.mli eta_fixing.ml eta_fixing.mli \
-        content2cic.ml content2cic.mli logicalOperations.ml \
-        logicalOperations.mli disambiguate.ml disambiguate.mli termEditor.ml \
-        termEditor.mli texTermEditor.ml texTermEditor.mli termViewer.ml \
-        termViewer.mli invokeTactics.ml invokeTactics.mli hbugs.ml hbugs.mli \
-        gTopLevel.ml
-
-TOPLEVELOBJS = \
-            eta_fixing.cmo content2cic.cmo \
-             proofEngine.cmo logicalOperations.cmo \
-             disambiguate.cmo termEditor.cmo texTermEditor.cmo termViewer.cmo \
-             invokeTactics.cmo hbugs.cmo gTopLevel.cmo
+INTERFACE_FILES = \
+       proofEngine.mli logicalOperations.mli disambiguate.mli \
+       termEditor.mli texTermEditor.mli xmlDiff.mli termViewer.mli \
+       invokeTactics.mli hbugs.mli
+
+DEPOBJS = $INTERFACE_FILES $(INTERFACE_FILES:%.mli=%.ml) gTopLevel.ml
+
+TOPLEVELOBJS = $(INTERFACE_FILES:%.mli=%.cmo) gTopLevel.cmo
+
+$(INTERFACE_FILES:%.mli=%.cmo): $(LIBRARIES)
+$(INTERFACE_FILES:%.mli=%.cmx): $(LIBRARIES_OPT)
 
 styles:
        @echo "***********************************************************************"