]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/metadata/table_creator/Makefile
added table_creator (comman line frontend to SqlStatements)
[helm.git] / helm / ocaml / metadata / table_creator / Makefile
1 REQUIRES = mysql helm-metadata
2
3 INTERFACE_FILES = 
4 IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) 
5 EXTRA_OBJECTS_TO_INSTALL =
6 EXTRA_OBJECTS_TO_CLEAN =table_creator table_creator.opt
7
8 all: table_creator
9 opt: table_creator.opt
10
11 table_creator: table_creator.ml
12         $(OCAMLFIND) ocamlc \
13                 -thread -package mysql,helm-metadata -linkpkg -o $@ $<
14
15 table_creator.opt: table_creator.ml
16         $(OCAMLFIND) ocamlopt \
17                 -thread -package mysql,helm-metadata -linkpkg -o $@ $<
18                 
19 include ../../Makefile.common
20 include .depend