]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/hbugs/common/Makefile
This commit was manufactured by cvs2svn to create branch 'init'.
[helm.git] / helm / hbugs / common / Makefile
diff --git a/helm/hbugs/common/Makefile b/helm/hbugs/common/Makefile
deleted file mode 100644 (file)
index 4055f88..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-REQUIRES = pcre pxp
-COMMONOPTS = -package "$(REQUIRES)" -pp camlp4o
-OCAMLC = ocamlfind ocamlc $(COMMONOPTS)
-OCAMLOPT = ocamlfind ocamlopt $(COMMONOPTS)
-OCAMLDEP = ocamlfind ocamldep $(COMMONOPTS)
-MODULES =      \
-       hbugs_types threadSafe hbugs_misc hbugs_id_generator hbugs_messages
-
-OBJS = $(patsubst %,%.cmo,$(MODULES))
-OBJSOPT = $(patsubst %,%.cmx,$(MODULES))
-
-all: byte
-byte: $(OBJS)
-opt: $(OBJSOPT)
-world: byte opt
-
-include .depend
-depend:
-       $(OCAMLDEP) *.ml *.mli > .depend
-
-%.cmi: %.mli
-       $(OCAMLC) -c $<
-%.cmo: %.ml %.cmi
-       $(OCAMLC) -c $<
-%.cmx: %.ml %.cmi
-       $(OCAMLOPT) -c $<
-include Makefile.overrides
-
-distclean: clean
-clean:
-       rm -f *.cm[aiox] *.o $(NAME){,.opt}
-
-.PHONY: all byte opt world depend clean
-