X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmathql_interpreter%2FMakefile;h=555f1621558e56761c84eece891f544cfcc3aa65;hb=381006cf8b418cfdeaf145ab7df9e8f2b19ae2e6;hp=be32ff48ca05c0491638867c6831c8cb4ec52f7d;hpb=1c7fb836e2af4f2f3d18afd0396701f2094265ff;p=helm.git diff --git a/helm/ocaml/mathql_interpreter/Makefile b/helm/ocaml/mathql_interpreter/Makefile index be32ff48c..555f16215 100644 --- a/helm/ocaml/mathql_interpreter/Makefile +++ b/helm/ocaml/mathql_interpreter/Makefile @@ -1,17 +1,24 @@ PACKAGE = mathql_interpreter -REQUIRES = helm-cic helm-cic_textual_parser helm-mathql postgres +REQUIRES = postgres helm-mathql #natile-galax PREDICATES = -INTERFACE_FILES = mQueryMisc.mli mQIUtil.mli \ - mQIPostgres.mli mQIMap.mli mQIConn.mli \ - mQIProperty.mli mQueryInterpreter.mli +PRE_IFILES = mQIPostgres.mli mQIMap.mli mQIConn.mli \ + mQILib.mli mQIProperty.mli -IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) +POST_IFILES = mQueryIO.mli mQueryInterpreter.mli mQueryStandard.mli -EXTRA_OBJECTS_TO_INSTALL = +INTERFACE_FILES = $(PRE_IFILES) $(POST_IFILES) -EXTRA_OBJECTS_TO_CLEAN = +IMPLEMENTATION_FILES = $(PRE_IFILES:%.mli=%.ml) \ + mQueryTParser.ml mQueryTLexer.ml \ + $(POST_IFILES:%.mli=%.ml) + +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