]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/metadata/Makefile
some makefile work
[helm.git] / helm / ocaml / metadata / Makefile
index 29ca2d3bce9862f90f841ea1c04387fb7fdb9cb6..80dc4133ec8df144beacc4dbb5f09ea44e849c06 100644 (file)
@@ -18,20 +18,26 @@ all: all_table_creator all_extractor
 opt: opt_table_creator opt_extractor
 
 all_table_creator:
-       make -C table_creator/ all
+       @echo "  building: table_creator"
+       @make -C table_creator/ all --no-print-directory
 opt_table_creator:
-       make -C table_creator/ opt
+       @echo "  building: table_creator"
+       @make -C table_creator/ opt --no-print-directory
 
 all_extractor:
-       make -C extractor/ all
+       @echo "  building: extractor"
+       @make -C extractor/ all --no-print-directory
 opt_extractor:
-       make -C extractor/ opt
+       @echo "  building: extractor"
+       @make -C extractor/ opt --no-print-directory
 
 clean: clean_table_creator clean_extractor
 
 clean_table_creator:
-       make -C table_creator/ clean
+       @echo "  cleaning: table_creator"
+       @make -C table_creator/ clean --no-print-directory
        
 clean_extractor:
-       make -C extractor/ clean
+       @echo "  cleaning: extractor"
+       @make -C extractor/ clean --no-print-directory