]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/metadata/extractor/Makefile
some makefile work
[helm.git] / helm / ocaml / metadata / extractor / Makefile
index e58064b4159f322148772bf8e62f77300d48b9c4..7c2aec0e555e316822d111bf4f3d93cf0a669ff7 100644 (file)
@@ -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