]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/metadata/table_creator/Makefile
removed no longer used METAs
[helm.git] / helm / ocaml / metadata / table_creator / Makefile
index cb8ab763672186e6c6097f34d31cfa5f15e53dc3..c54e52d4ac13ece7d3f4f18212f662af95389a0f 100644 (file)
@@ -1,5 +1,4 @@
 REQUIRES = mysql helm-metadata
-OCAMLFIND = ocamlfind
 
 INTERFACE_FILES = 
 IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) 
@@ -8,24 +7,29 @@ EXTRA_OBJECTS_TO_CLEAN = \
        table_creator table_creator.opt table_destructor table_destructor.opt
 
 all: table_creator table_destructor
+       @echo -n
 opt: table_creator.opt table_destructor.opt
+       @echo -n
 
 table_creator: table_creator.ml ../metadata.cma
-       $(OCAMLFIND) ocamlc \
+       @echo "    OCAMLC $<"
+       @$(OCAMLFIND) ocamlc \
                -thread -package mysql,helm-metadata -linkpkg -o $@ $<
 
 table_destructor: table_creator
-       ln -f $< $@
+       @ln -f $< $@
 
 table_creator.opt: table_creator.ml ../metadata.cmxa
-       $(OCAMLFIND) ocamlopt \
+       @echo "    OCAMLOPT $<"
+       @$(OCAMLFIND) ocamlopt \
                -thread -package mysql,helm-metadata -linkpkg -o $@ $<
 
 table_destructor.opt: table_creator.opt
-       ln  -f $< $@
+       @ln  -f $< $@
 
 clean:
        rm -f *.cm[iox] *.a *.o
        rm -f table_creator table_creator.opt table_destructor table_destructor.opt
 
 include .depend
+include ../../../Makefile.defs