X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fhbugs%2Fcommon%2FMakefile;fp=helm%2Fhbugs%2Fcommon%2FMakefile;h=0000000000000000000000000000000000000000;hb=869549224eef6278a48c16ae27dd786376082b38;hp=4055f88c985df77c1e6f8116e2d611e0bb35c3f1;hpb=89262281b6e83bd2321150f81f1a0583645eb0c8;p=helm.git diff --git a/helm/hbugs/common/Makefile b/helm/hbugs/common/Makefile deleted file mode 100644 index 4055f88c9..000000000 --- a/helm/hbugs/common/Makefile +++ /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 -