X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Ftactics%2FMakefile;h=04dd68223c0996262fa171d3a785803ebbed1da8;hb=098d4ba18dfe92d25cb5e513231d952d14938bb6;hp=cb38579e1b6308e339cdc1ab3d8a1a6428283e91;hpb=1589ec067f5f18594dfcab61431adbe095db1bd1;p=helm.git diff --git a/helm/software/components/tactics/Makefile b/helm/software/components/tactics/Makefile index cb38579e1..04dd68223 100644 --- a/helm/software/components/tactics/Makefile +++ b/helm/software/components/tactics/Makefile @@ -7,6 +7,8 @@ INTERFACE_FILES = \ tacticals.mli reductionTactics.mli proofEngineStructuralRules.mli \ primitiveTactics.mli hashtbl_equiv.mli metadataQuery.mli \ paramodulation/utils.mli \ + paramodulation/subst.mli\ + paramodulation/equality.mli\ paramodulation/inference.mli\ paramodulation/equality_indexing.mli\ paramodulation/indexing.mli \ @@ -30,6 +32,17 @@ tactics.mli: $(H)echo "(* GENERATED FILE, DO NOT EDIT. STAMP:`date` *)" > $@ $(H)$(OCAMLC) -I paramodulation -i $(tactics_mli_deps) >> $@ +UTF8DIR = $(shell $(OCAMLFIND) query helm-syntax_extensions) +STR=$(shell $(OCAMLFIND) query str) +MY_SYNTAXOPTIONS = -pp "camlp4o -I $(UTF8DIR) -I $(STR) str.cma pa_extend.cmo profiling_macros.cma -loc loc" +paramodulation/%.cmo: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS) +paramodulation/%.cmo: OCAMLC = $(OCAMLC_P4) +paramodulation/%.cmx: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS) +paramodulation/%.cmx: OCAMLOPT = $(OCAMLOPT_P4) + +depend: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS) +depend.opt: SYNTAXOPTIONS = $(MY_SYNTAXOPTIONS) + STATS_EXCLUDE = tactics.mli include ../../Makefile.defs