]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/mathql_interpreter/Makefile
standard library and while construction inserted
[helm.git] / helm / ocaml / mathql_interpreter / Makefile
index 4bd66762595b3ccde887216fb078105e89c34477..48859300bc1d88eadb1d4431d88e83d4cc1788d4 100644 (file)
@@ -1,15 +1,24 @@
 PACKAGE = mathql_interpreter
-REQUIRES = helm-urimanager postgres unix natile-galax helm-mathql
+REQUIRES = postgres helm-mathql
+#natile-galax 
+
 PREDICATES =
 
-INTERFACE_FILES = dbconn.mli utility.mli union.mli relation.mli diff.mli meet.mli sub.mli intersect.mli func.mli property.mli pattern.mli mqint.mli
+PRE_IFILES = mQIPostgres.mli mQIMap.mli mQIConn.mli \
+            mQIUtil.mli mQILib.mli mQIProperty.mli 
+
+POST_IFILES = mQueryIO.mli mQueryInterpreter.mli mQueryStandard.mli
 
-IMPLEMENTATION_FILES =  dbconn.ml utility.ml union.ml relation.ml diff.ml meet.ml sub.ml intersect.ml context.ml func.ml property.ml pattern.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