X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmetadata%2Fextractor%2FMakefile;fp=helm%2Focaml%2Fmetadata%2Fextractor%2FMakefile;h=7c2aec0e555e316822d111bf4f3d93cf0a669ff7;hb=c051f623926cdc3b744c38ba393c0a9c7622d299;hp=e58064b4159f322148772bf8e62f77300d48b9c4;hpb=0ef468f9000a8e9c391cc8ade2f9aea35e878305;p=helm.git diff --git a/helm/ocaml/metadata/extractor/Makefile b/helm/ocaml/metadata/extractor/Makefile index e58064b41..7c2aec0e5 100644 --- a/helm/ocaml/metadata/extractor/Makefile +++ b/helm/ocaml/metadata/extractor/Makefile @@ -1,25 +1,31 @@ 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