PACKAGE = metadata PREDICATES = INTERFACE_FILES = \ sqlStatements.mli \ metadataTypes.mli \ metadataExtractor.mli \ metadataPp.mli \ metadataConstraints.mli \ metadataDb.mli IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) EXTRA_OBJECTS_TO_INSTALL = EXTRA_OBJECTS_TO_CLEAN = include ../Makefile.common all: all_table_creator all_extractor opt: opt_table_creator opt_extractor all_table_creator: @echo " building: table_creator" @make -C table_creator/ all --no-print-directory opt_table_creator: @echo " building: table_creator" @make -C table_creator/ opt --no-print-directory all_extractor: @echo " building: extractor" @make -C extractor/ all --no-print-directory opt_extractor: @echo " building: extractor" @make -C extractor/ opt --no-print-directory clean: clean_table_creator clean_extractor clean_table_creator: @echo " cleaning: table_creator" @make -C table_creator/ clean --no-print-directory clean_extractor: @echo " cleaning: extractor" @make -C extractor/ clean --no-print-directory