From: Enrico Tassi Date: Thu, 12 Jan 2006 14:19:44 +0000 (+0000) Subject: fixes for paramodulation relocation X-Git-Tag: make_still_working~7839 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=e6a0a7caa40e3bceea30d3a56f013ac601cd1e16;p=helm.git fixes for paramodulation relocation saturate(.opt) is now always compiled --- diff --git a/helm/ocaml/Makefile.in b/helm/ocaml/Makefile.in index 88410454c..a4a6c8fd2 100644 --- a/helm/ocaml/Makefile.in +++ b/helm/ocaml/Makefile.in @@ -23,6 +23,7 @@ MODULES = \ cic_unification \ whelp \ tactics \ + tactics/paramodulation \ cic_disambiguation \ lexicon \ grafite_engine \ @@ -33,9 +34,9 @@ OCAMLFIND_DEST_DIR = @OCAMLFIND_DEST_DIR@ OCAMLPATH = @OCAMLFIND_META_DIR@ OCAMLFIND = OCAMLPATH=$(OCAMLPATH):$$OCAMLPATH @OCAMLFIND@ -METAS = $(MODULES:%=METAS/META.helm-%) METAS/META.helm-cic_disambiguation +METAS = $(filter-out %/paramodulation,$(MODULES:%=METAS/META.helm-%)) -all: metas $(MODULES:%=%.all) +all: metas $(MODULES:%=%.all) opt: metas $(MODULES:%=%.opt) world: all opt metas: $(METAS) @@ -43,6 +44,7 @@ depend: $(MODULES:%=%.depend) install: $(MODULES:%=%.install) uninstall: $(MODULES:%=%.uninstall) clean: $(MODULES:%=%.clean) + clean_metas: rm -f $(METAS) distclean: clean clean_metas diff --git a/helm/ocaml/tactics/paramodulation/Makefile b/helm/ocaml/tactics/paramodulation/Makefile index af04e29c4..8baf84c47 100644 --- a/helm/ocaml/tactics/paramodulation/Makefile +++ b/helm/ocaml/tactics/paramodulation/Makefile @@ -2,13 +2,17 @@ PACKAGE = dummy LOCALLINKOPTS = -package helm-cic_disambiguation,helm-content_pres,helm-grafite,helm-grafite_parser,helm-tactics +all:saturate +opt:saturate.opt + saturate: saturate_main.ml $(LIBRARIES) $(OCAMLC) $(LOCALLINKOPTS) -thread -linkpkg -o $@ $< -saturate.opt: saturate_main.ml $(PARAMOD_OBJS_OPT) $(LIBRARIES) - $(OCAMLOPT) $(LOCALLINKOPTS) -thread -linkpkg -o $@ $(PARAMOD_OBJS_OPT) < +saturate.opt: saturate_main.ml $(LIBRARIES) + $(OCAMLOPT) $(LOCALLINKOPTS) -thread -linkpkg -o $@ $< + +include ../../Makefile.common clean: - rm saturate saturate.cmo saturate.cmx + rm -f saturate saturate.opt -include ../../Makefile.common