X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fhbugs%2Fbroker%2FMakefile;fp=helm%2Fhbugs%2Fbroker%2FMakefile;h=0000000000000000000000000000000000000000;hb=869549224eef6278a48c16ae27dd786376082b38;hp=32fce5032a91c653d4d10ace849be44e25ad697a;hpb=89262281b6e83bd2321150f81f1a0583645eb0c8;p=helm.git diff --git a/helm/hbugs/broker/Makefile b/helm/hbugs/broker/Makefile deleted file mode 100644 index 32fce5032..000000000 --- a/helm/hbugs/broker/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -NAME = hbugs_broker -METADIR = ../meta -REQUIRES = http threads hbugs-common hbugs-thread-safe -COMMONOPTS = -package "$(REQUIRES)" -pp camlp4o -OCAMLC = OCAMLPATH="$(METADIR)" ocamlfind ocamlc $(COMMONOPTS) -OCAMLOPT = OCAMLPATH="$(METADIR)" ocamlfind ocamlopt $(COMMONOPTS) -OCAMLDEP = OCAMLPATH="$(METADIR)" ocamlfind ocamldep $(COMMONOPTS) -MODULES = hbugs_broker_registry - -OBJS = $(patsubst %,%.cmo,$(MODULES)) -OBJSOPT = $(patsubst %,%.cmx,$(MODULES)) - -all: byte -byte: $(NAME) -opt: $(NAME).opt -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 -$(NAME): $(OBJS) $(NAME).ml - $(OCAMLC) -linkpkg -thread -o $@ $^ -$(NAME).opt: $(OBJSOPT) $(NAME).ml - $(OCAMLOPT) -linkpkg -thread -o $@ $^ - -distclean: clean -clean: - rm -f *.cm[aiox] *.o $(NAME){,.opt} - -.PHONY: all byte opt world depend clean -