X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmathql_interpreter%2FMakefile;h=f2514f8e03a406cd57fe428e815ac90fc4a845e5;hb=b2bde540ce5ec2c8731f0353815583bd3d4eba26;hp=4bd66762595b3ccde887216fb078105e89c34477;hpb=d6dd3cb8ee6718a0992a87e15a4b98b438d0f30d;p=helm.git diff --git a/helm/ocaml/mathql_interpreter/Makefile b/helm/ocaml/mathql_interpreter/Makefile index 4bd667625..f2514f8e0 100644 --- a/helm/ocaml/mathql_interpreter/Makefile +++ b/helm/ocaml/mathql_interpreter/Makefile @@ -1,15 +1,24 @@ PACKAGE = mathql_interpreter -REQUIRES = helm-urimanager postgres unix natile-galax helm-mathql +REQUIRES = postgres helm-registry 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 \ + 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