X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmetadata%2FMakefile;h=d02d021a5b3844e6137924de968e3f26be100f8f;hb=154b20de8915baedf60d770a4045e3f62e53bca0;hp=29ca2d3bce9862f90f841ea1c04387fb7fdb9cb6;hpb=d579fcbe53997bcf8cc617341cd1da5e6d094c13;p=helm.git diff --git a/helm/ocaml/metadata/Makefile b/helm/ocaml/metadata/Makefile index 29ca2d3bc..d02d021a5 100644 --- a/helm/ocaml/metadata/Makefile +++ b/helm/ocaml/metadata/Makefile @@ -12,26 +12,29 @@ IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) EXTRA_OBJECTS_TO_INSTALL = EXTRA_OBJECTS_TO_CLEAN = +include ../../Makefile.defs include ../Makefile.common all: all_table_creator all_extractor opt: opt_table_creator opt_extractor all_table_creator: - make -C table_creator/ all + @make -C table_creator/ all opt_table_creator: - make -C table_creator/ opt + @make -C table_creator/ opt all_extractor: - make -C extractor/ all + @make -C extractor/ all opt_extractor: - make -C extractor/ opt + @make -C extractor/ opt clean: clean_table_creator clean_extractor clean_table_creator: - make -C table_creator/ clean + @echo " cleaning: table_creator" + @make -C table_creator/ clean clean_extractor: - make -C extractor/ clean + @echo " cleaning: extractor" + @make -C extractor/ clean