X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Focaml%2Fmathql_interpreter%2FMakefile;h=e9f0cdb1ae00135e37bed2c844b107b6f6891748;hb=04cc990d9452b85535c5dc93655078d9fb19b14c;hp=f5714135815987f859d5cf8a8cf9a33263d640bc;hpb=1445bbed27591dab1d364153dfcd68b534e3f71f;p=helm.git diff --git a/helm/ocaml/mathql_interpreter/Makefile b/helm/ocaml/mathql_interpreter/Makefile index f57141358..e9f0cdb1a 100644 --- a/helm/ocaml/mathql_interpreter/Makefile +++ b/helm/ocaml/mathql_interpreter/Makefile @@ -1,17 +1,26 @@ PACKAGE = mathql_interpreter -REQUIRES = helm-urimanager postgres unix helm-mathql +REQUIRES = postgres mysql helm-registry 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 = mQIMySql.mli mQIPostgres.mli mQIMap.mli mQIConn.mli \ + mQILib.mli mQIProperty.mli + +POST_IFILES = mQueryIO.mli mQueryInterpreter.mli mQueryStandard.mli -IMPLEMENTATION_FILES = mathql_semantics.ml \ - $(INTERFACE_FILES:%.mli=%.ml) +INTERFACE_FILES = $(PRE_IFILES) $(POST_IFILES) -EXTRA_OBJECTS_TO_INSTALL = mathql_semantics.ml mathql_semantics.cmi +IMPLEMENTATION_FILES = mQITypes.ml \ + $(PRE_IFILES:%.mli=%.ml) \ + mQueryTParser.ml mQueryTLexer.ml \ + $(POST_IFILES:%.mli=%.ml) -EXTRA_OBJECTS_TO_CLEAN = +EXTRA_OBJECTS_TO_INSTALL = mQITypes.ml mQITypes.cmi \ + mQITypes.cmi mQueryTLexer.cmi \ + mQITypes.ml mQueryTLexer.mll mQueryTParser.mly +EXTRA_OBJECTS_TO_CLEAN = mQueryTParser.ml mQueryTParser.mli \ + mQueryTLexer.ml include ../Makefile.common