X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FsearchEngine%2FMakefile;fp=helm%2FsearchEngine%2FMakefile;h=0000000000000000000000000000000000000000;hb=76ad23ea1e83e8c187a4593027e9baed1bb022e3;hp=2ae59df911656519f35efb5d880ec56672a44c1b;hpb=2b2b90087f836c2f32291935216549e9370e68c3;p=helm.git diff --git a/helm/searchEngine/Makefile b/helm/searchEngine/Makefile deleted file mode 100644 index 2ae59df91..000000000 --- a/helm/searchEngine/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -REQUIRES = http helm-cic_textual_parser2 helm-logger helm-tactics -OCAMLOPTIONS = -thread -package "$(REQUIRES)" -pp camlp4o -OCAMLC = ocamlfind ocamlc $(OCAMLOPTIONS) -OCAMLOPT = ocamlfind ocamlopt $(OCAMLOPTIONS) -OCAMLDEP = ocamlfind ocamldep -package "$(REQUIRES)" -pp camlp4o - -MODULES = mooglePp -SRCS = $(patsubst %,%.ml,$(MODULES)) $(patsubst %,%.mli,$(MODULES)) \ - searchEngine.ml -CMOS = $(patsubst %,%.cmo,$(MODULES)) -CMXS = $(patsubst %,%.cmx,$(MODULES)) - -all: byte html -world: byte opt -byte: searchEngine -opt: searchEngine.opt html - -.PHONY: html -html: - make -C html/ - -%.cmi: %.mli - $(OCAMLC) -c $< -%.cmo %.cmi: %.ml - $(OCAMLC) -c $< -%.cmx: %.ml - $(OCAMLOPT) -c $< - -searchEngine: $(CMOS) searchEngine.ml - $(OCAMLC) -linkpkg -o $@ $^ -searchEngine.opt: $(CMXS) searchEngine.ml - $(OCAMLOPT) -linkpkg -o $@ $^ - -clean: - make -C html/ clean - rm -f *.cm[aiox] *.o searchEngine{,.opt} - -.PHONY: depend -depend: - $(OCAMLDEP) $(SRCS) > .depend - -.PHONY: all opt clean - -include .depend -