X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FgTopLevel%2FMakefile;h=82d051fc6ff57e6176d538be9849395a7c18bb21;hb=789a37bedf2a8ce2a0b4389fb5c48a0a7b6572d6;hp=6dfa38622896000f116052ff92564176b37232fb;hpb=f7b2e35a7bdadb4fdf0e640428e694703ddf67a5;p=helm.git diff --git a/helm/gTopLevel/Makefile b/helm/gTopLevel/Makefile index 6dfa38622..82d051fc6 100644 --- a/helm/gTopLevel/Makefile +++ b/helm/gTopLevel/Makefile @@ -11,25 +11,28 @@ 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 = \ - doubleTypeInference.cmo eta_fixing.cmo content2cic.cmo \ - proofEngine.cmo logicalOperations.cmo \ - disambiguate.cmo termEditor.cmo texTermEditor.cmo termViewer.cmo \ - invokeTactics.cmo hbugs.cmo gTopLevel.cmo +start: + $(MAKE) -C ../hbugs/ start +stop: + $(MAKE) -C ../hbugs/ stop + +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 "***********************************************************************"