X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmathql_interpreter%2FMakefile;h=e9f0cdb1ae00135e37bed2c844b107b6f6891748;hb=04cc990d9452b85535c5dc93655078d9fb19b14c;hp=cd63e8ab4419c522687a9e72ebad40956d373a56;hpb=ba824e867afc3eaf081ed1a1d6526d421242a6a0;p=helm.git diff --git a/helm/ocaml/mathql_interpreter/Makefile b/helm/ocaml/mathql_interpreter/Makefile index cd63e8ab4..e9f0cdb1a 100644 --- a/helm/ocaml/mathql_interpreter/Makefile +++ b/helm/ocaml/mathql_interpreter/Makefile @@ -1,15 +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 utility.mli union.mli relation.mli diff.mli meet.mli sub.mli intersect.mli func.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 = dbconn.ml utility.ml union.ml relation.ml diff.ml meet.ml sub.ml intersect.ml context.ml func.ml mqint.ml +INTERFACE_FILES = $(PRE_IFILES) $(POST_IFILES) -# $(INTERFACE_FILES:%.mli=%.ml) +IMPLEMENTATION_FILES = mQITypes.ml \ + $(PRE_IFILES:%.mli=%.ml) \ + mQueryTParser.ml mQueryTLexer.ml \ + $(POST_IFILES:%.mli=%.ml) -EXTRA_OBJECTS_TO_INSTALL = context.ml +EXTRA_OBJECTS_TO_INSTALL = mQITypes.ml mQITypes.cmi \ + 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