X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Focaml%2Fmathql_interpreter%2FMakefile;h=f2514f8e03a406cd57fe428e815ac90fc4a845e5;hb=b2bde540ce5ec2c8731f0353815583bd3d4eba26;hp=27ae1fb1d2d144fcfe8650611c474f41929cc002;hpb=6a1d05b388683befc860b48b4f2bbaf42f58a112;p=helm.git diff --git a/helm/ocaml/mathql_interpreter/Makefile b/helm/ocaml/mathql_interpreter/Makefile index 27ae1fb1d..f2514f8e0 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-registry helm-mathql +#natile-galax + PREDICATES = -INTERFACE_FILES = dbconn.mli eval.mli utility.mli func.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