]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/searchEngine/Makefile
This commit was manufactured by cvs2svn to create branch
[helm.git] / helm / searchEngine / Makefile
diff --git a/helm/searchEngine/Makefile b/helm/searchEngine/Makefile
deleted file mode 100644 (file)
index a2287e7..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-REQUIRES = http helm-cic_textual_parser helm-cic_proof_checking \
-           helm-xml gdome2-xslt helm-cic_unification helm-mathql \
-           helm-mathql_interpreter helm-mathql_generator netclient
-OCAMLOPTIONS = -package "$(REQUIRES)" -pp camlp4o -I ../gTopLevel
-OCAMLC = ocamlfind ocamlc $(OCAMLOPTIONS)
-OCAMLOPT = ocamlfind ocamlopt $(OCAMLOPTIONS)
-
-GTOPLEVEL_MODULES = disambiguate
-MODULES =
-CMOS = $(patsubst %,%.cmo,$(MODULES))
-CMXS = $(patsubst %,%.cmx,$(MODULES))
-LIBRARIES =    $(patsubst %,../gTopLevel/%.cmo,$(GTOPLEVEL_MODULES))
-LIBRARIES_OPT =        $(patsubst %,../gTopLevel/%.cmx,$(GTOPLEVEL_MODULES))
-
-all: byte
-world: byte opt
-byte: searchEngine
-opt: searchEngine.opt
-
-searchEngine: $(LIBRARIES) $(CMOS) searchEngine.ml
-       $(OCAMLC) -linkpkg -o $@ $^
-searchEngine.opt: $(LIBRARIES_OPT) $(CMXS) searchEngine.ml
-       $(OCAMLOPT) -linkpkg -o $@ $^
-
-clean:
-       rm -f *.cm[aiox] *.o searchEngine{,.opt}
-
-.PHONY: all opt clean