]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/gTopLevel/Makefile
New target librarytest (to apply testlibrary.opt to index.txt). The output
[helm.git] / helm / gTopLevel / Makefile
index d897036c03ecb9a7ae4f78d328f31896cc945e9e..7ea740bc6430e4a4017d9e09720f12791c5060d0 100644 (file)
@@ -1,9 +1,8 @@
 BIN_DIR = /usr/local/bin
 REQUIRES = lablgtkmathview helm-cic_textual_parser helm-tex_cic_textual_parser \
-           helm-cic_proof_checking helm-xml gdome2-xslt helm-cic_unification \
-           helm-mathql helm-mathql_interpreter helm-mathql_generator \
-                helm-tactics threads hbugs-client mathml-editor \
-           helm-cic_transformations
+           gdome2-xslt helm-mathql_interpreter helm-mathql_generator \
+          helm-tactics hbugs-client mathml-editor helm-cic_transformations \
+           helm-cic_textual_parser2 helm-cic_cache
 PREDICATES = "gnome,init,glade"
 OCAMLOPTIONS = -package "$(REQUIRES)" -predicates "$(PREDICATES)" -pp camlp4o
 OCAMLFIND = ocamlfind
@@ -11,24 +10,35 @@ 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
 
+start:
+       $(MAKE) -C ../hbugs/ start
+stop:
+       $(MAKE) -C ../hbugs/ stop
+
+INTERFACE_FILES = \
+       proofEngine.mli logicalOperations.mli oldDisambiguate.mli \
+  disambiguatingParser.mli termEditor.mli texTermEditor.mli xmlDiff.mli \
+  chosenTransformer.mli termViewer.mli invokeTactics.mli hbugs.mli \
+  chosenTermEditor.mli 
+
 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 xmlDiff.ml \
-        xmlDiff.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 xmlDiff.cmo \
-       termViewer.cmo invokeTactics.cmo hbugs.cmo gTopLevel.cmo
+       $(INTERFACE_FILES) $(INTERFACE_FILES:%.mli=%.ml) \
+       gTopLevel.ml regtest.ml testlibrary.ml batchParser.ml batchParser.mli
+
+TOPLEVELOBJS = $(INTERFACE_FILES:%.mli=%.cmo) gTopLevel.cmo
+REGTESTOBJS = \
+       $(INTERFACE_FILES:%.mli=%.cmo) batchParser.cmo regtest.cmo
+TESTLIBOBJS = \
+       $(INTERFACE_FILES:%.mli=%.cmo) testlibrary.cmo
+
+$(INTERFACE_FILES:%.mli=%.cmo): $(LIBRARIES)
+$(INTERFACE_FILES:%.mli=%.cmx): $(LIBRARIES_OPT)
 
 styles:
        @echo "***********************************************************************"
@@ -43,10 +53,18 @@ depend:
        $(OCAMLDEP) $(DEPOBJS) > .depend
 
 gTopLevel: $(TOPLEVELOBJS) $(LIBRARIES)
-       $(OCAMLC) -linkpkg -o gTopLevel $(TOPLEVELOBJS)
-
+       $(OCAMLC) -linkpkg -o $@ $(TOPLEVELOBJS)
 gTopLevel.opt: $(TOPLEVELOBJS:.cmo=.cmx) $(LIBRARIES_OPT)
-       $(OCAMLOPT) -linkpkg -o gTopLevel.opt $(TOPLEVELOBJS:.cmo=.cmx)
+       $(OCAMLOPT) -linkpkg -o $@ $(TOPLEVELOBJS:.cmo=.cmx)
+
+testlibrary: $(TESTLIBOBJS) $(LIBRARIES)
+       $(OCAMLC) -linkpkg -o $@ $(TESTLIBOBJS)
+testlibrary.opt: $(TESTLIBOBJS:.cmo=.cmx) $(LIBRARIES)
+       $(OCAMLOPT) -linkpkg -o $@ $(TESTLIBOBJS:.cmo=.cmx)
+regtest: $(REGTESTOBJS) $(LIBRARIES)
+       $(OCAMLC) -linkpkg -o $@ $(REGTESTOBJS)
+regtest.opt: $(REGTESTOBJS:.cmo=.cmx) $(LIBRARIES)
+       $(OCAMLOPT) -linkpkg -o $@ $(REGTESTOBJS:.cmo=.cmx)
 
 .SUFFIXES: .ml .mli .cmo .cmi .cmx
 .ml.cmo:
@@ -60,24 +78,28 @@ $(TOPLEVELOBJS): $(LIBRARIES)
 $(TOPLEVELOBJS:.cmo=.cmx)): $(LIBRARIES_OPT)
 
 clean:
-       rm -f *.cm[iox] *.o gTopLevel gTopLevel.opt
-
+       rm -f *.cm[iox] *.o gTopLevel{,.opt} regtest{,.opt}
 install:
        cp gTopLevel gTopLevel.opt $(BIN_DIR)
-
 uninstall:
        rm -f $(BIN_DIR)/gTopLevel $(BIN_DIR)/gTopLevel.opt
 
-.PHONY: install uninstall clean
+.PHONY: install uninstall clean test
+
+INTESTS := $(wildcard tests/*.cic)
+OUTTESTS := $(patsubst %, %.test, $(INTESTS))
+gentest: $(OUTTESTS)
+cleantest:
+       rm -f $(OUTTESTS)
+tests/%.cic.test: tests/%.cic regtest
+       time ./regtest -gen $<
+test: regtest
+       ./regtest $(INTESTS) 2> /dev/null
+envtest: regtest
+       ./regtest -dump $(INTESTS) 2> /dev/null
+librarytest: testlibrary.opt
+       ./testlibrary.opt - <index.txt 2>/dev/null >LOG &
 
 ifneq ($(MAKECMDGOALS), depend)
    include .depend   
 endif
-
-
-
-
-
-
-
-