]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/mathql_interpreter/Makefile
first version
[helm.git] / helm / ocaml / mathql_interpreter / Makefile
index cd63e8ab4419c522687a9e72ebad40956d373a56..c82572648051df7ce0dcda8fe54c6d4906fb87e3 100644 (file)
@@ -1,15 +1,24 @@
 PACKAGE = mathql_interpreter
-REQUIRES = helm-urimanager postgres unix helm-mathql
+REQUIRES = helm-urimanager helm-mathql postgres
+#natile-galax 
+
 PREDICATES =
 
-INTERFACE_FILES = dbconn.mli utility.mli union.mli relation.mli diff.mli meet.mli sub.mli intersect.mli func.mli mqint.mli
+PRE_IFILES = mQIPostgres.mli mQIMap.mli mQIConn.mli \
+            mQIUtil.mli mQILib.mli mQIProperty.mli 
+
+POST_IFILES = mQueryIO.mli mQueryInterpreter.mli
 
-IMPLEMENTATION_FILES =  dbconn.ml utility.ml union.ml relation.ml diff.ml meet.ml sub.ml intersect.ml context.ml func.ml mqint.ml
+INTERFACE_FILES = $(PRE_IFILES) $(POST_IFILES)
 
-# $(INTERFACE_FILES:%.mli=%.ml)
+IMPLEMENTATION_FILES = $(PRE_IFILES:%.mli=%.ml) \
+                      mQueryTParser.ml mQueryTLexer.ml \
+                      $(POST_IFILES:%.mli=%.ml)
 
-EXTRA_OBJECTS_TO_INSTALL = context.ml
+EXTRA_OBJECTS_TO_INSTALL = mQITypes.cmi mQueryTLexer.cmi \
+                          mQITypes.ml mQueryTLexer.mll mQueryTParser.mly
 
-EXTRA_OBJECTS_TO_CLEAN =
+EXTRA_OBJECTS_TO_CLEAN = mQueryTParser.ml mQueryTParser.mli \
+                        mQueryTLexer.ml
 
 include ../Makefile.common