]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/searchEngine/Makefile
debian: rebuilt against ocaml 3.08.3
[helm.git] / helm / searchEngine / Makefile
index b0836f5b06a147f98e2d70a91f0f681d6f026323..3e21d861170e358bf2d5b37f60a1e3d693b5c737 100644 (file)
@@ -1,4 +1,4 @@
-REQUIRES = http dbi.mysql helm-cic_textual_parser2 helm-logger helm-tactics
+REQUIRES = http helm-cic_textual_parser2 helm-logger helm-tactics
 OCAMLOPTIONS = -thread -package "$(REQUIRES)" -pp camlp4o
 OCAMLC = ocamlfind ocamlc $(OCAMLOPTIONS)
 OCAMLOPT = ocamlfind ocamlopt $(OCAMLOPTIONS)
@@ -10,11 +10,15 @@ SRCS = $(patsubst %,%.ml,$(MODULES)) $(patsubst %,%.mli,$(MODULES)) \
 CMOS = $(patsubst %,%.cmo,$(MODULES))
 CMXS = $(patsubst %,%.cmx,$(MODULES))
 
-all: byte
+all: byte html
 world: byte opt
 byte: searchEngine
 opt: searchEngine.opt
 
+.PHONY: html
+html:
+       make -C html/
+
 %.cmi: %.mli
        $(OCAMLC) -c $<
 %.cmo %.cmi: %.ml
@@ -28,6 +32,7 @@ searchEngine.opt: $(CMXS) searchEngine.ml
        $(OCAMLOPT) -linkpkg -o $@ $^
 
 clean:
+       make -C html/ clean
        rm -f *.cm[aiox] *.o searchEngine{,.opt}
 
 .PHONY: depend