X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Focaml%2Fmathql_interpreter%2FMakefile;h=555f1621558e56761c84eece891f544cfcc3aa65;hb=381006cf8b418cfdeaf145ab7df9e8f2b19ae2e6;hp=20335f6ce62d1e288ca43b58f12d7e4d1cdc57a3;hpb=8abd42ec1af0d5daef1d026ec550b49b07de8340;p=helm.git diff --git a/helm/ocaml/mathql_interpreter/Makefile b/helm/ocaml/mathql_interpreter/Makefile index 20335f6ce..555f16215 100644 --- a/helm/ocaml/mathql_interpreter/Makefile +++ b/helm/ocaml/mathql_interpreter/Makefile @@ -1,15 +1,24 @@ PACKAGE = mathql_interpreter -REQUIRES = helm-urimanager pgocaml +REQUIRES = postgres helm-mathql +#natile-galax + PREDICATES = -INTERFACE_FILES = dbconn.mli eval.mli utility.mli func.mli diff.mli \ - sortedby.mli select.mli intersect.mli union.mli \ - pattern.mli use.mli mqint.mli +PRE_IFILES = mQIPostgres.mli mQIMap.mli mQIConn.mli \ + mQILib.mli mQIProperty.mli + +POST_IFILES = mQueryIO.mli mQueryInterpreter.mli mQueryStandard.mli + +INTERFACE_FILES = $(PRE_IFILES) $(POST_IFILES) -IMPLEMENTATION_FILES = mathql.ml $(INTERFACE_FILES:%.mli=%.ml) +IMPLEMENTATION_FILES = $(PRE_IFILES:%.mli=%.ml) \ + mQueryTParser.ml mQueryTLexer.ml \ + $(POST_IFILES:%.mli=%.ml) -EXTRA_OBJECTS_TO_INSTALL = mathql.ml mathql.cmi -EXTRA_OBJECTS_TO_CLEAN = +EXTRA_OBJECTS_TO_INSTALL = mQITypes.cmi mQueryTLexer.cmi \ + mQITypes.ml mQueryTLexer.mll mQueryTParser.mly +EXTRA_OBJECTS_TO_CLEAN = mQueryTParser.ml mQueryTParser.mli \ + mQueryTLexer.ml include ../Makefile.common