X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmetadata%2Fextractor%2FMakefile;h=7c2aec0e555e316822d111bf4f3d93cf0a669ff7;hb=ed308fc03be5397081ac0e00bbc73b3f71da1e67;hp=0eccebee4f825df96ce06e71d49049de4e6f5649;hpb=d90d1c964b365ece207f27d41f26e87a18719d59;p=helm.git diff --git a/helm/ocaml/metadata/extractor/Makefile b/helm/ocaml/metadata/extractor/Makefile index 0eccebee4..7c2aec0e5 100644 --- a/helm/ocaml/metadata/extractor/Makefile +++ b/helm/ocaml/metadata/extractor/Makefile @@ -1,28 +1,31 @@ -REQUIRES = mysql helm-metadata - -INTERFACE_FILES = -IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) -EXTRA_OBJECTS_TO_INSTALL = -EXTRA_OBJECTS_TO_CLEAN = \ - extractor extractor.opt *.err *.out extractor_manager extractor_manager.opt +OCAMLFIND=ocamlfind all: extractor extractor_manager + @echo -n opt: extractor.opt extractor_manager.opt + @echo -n + +clean: + rm -f *.cm[ixo] *.[ao] extractor extractor.opt *.err *.out extractor_manager extractor_manager.opt extractor: extractor.ml - $(OCAMLFIND) ocamlc \ + @echo " OCAMLC $<" + @$(OCAMLFIND) ocamlc \ -thread -package mysql,helm-metadata -linkpkg -o $@ $< extractor.opt: extractor.ml - $(OCAMLFIND) ocamlopt \ + @echo " OCAMLOPT $<" + @$(OCAMLFIND) ocamlopt \ -thread -package mysql,helm-metadata -linkpkg -o $@ $< extractor_manager: extractor_manager.ml - $(OCAMLFIND) ocamlc \ + @echo " OCAMLC $<" + @$(OCAMLFIND) ocamlc \ -thread -package mysql,helm-metadata -linkpkg -o $@ $< extractor_manager.opt: extractor_manager.ml - $(OCAMLFIND) ocamlopt \ + @echo " OCAMLOPT $<" + @$(OCAMLFIND) ocamlopt \ -thread -package mysql,helm-metadata -linkpkg -o $@ $< export: extractor.opt extractor_manager.opt @@ -30,6 +33,4 @@ export: extractor.opt extractor_manager.opt time \ ./extractor_manager.opt 1>export.out 2>export.err - -include ../../Makefile.common include .depend