X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=blobdiff_plain;f=helm%2Fmetadata%2Fcreate2%2Ftouch%2FMakefile;fp=helm%2Fmetadata%2Fcreate2%2Ftouch%2FMakefile;h=0000000000000000000000000000000000000000;hp=636a804daba51c14f70aba9db3c6cd105ff927c7;hb=869549224eef6278a48c16ae27dd786376082b38;hpb=89262281b6e83bd2321150f81f1a0583645eb0c8 diff --git a/helm/metadata/create2/touch/Makefile b/helm/metadata/create2/touch/Makefile deleted file mode 100644 index 636a804da..000000000 --- a/helm/metadata/create2/touch/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -REQUIRES = helm-getter helm-cic str -PREDICATES = -OCAMLOPTIONS = -package "$(REQUIRES)" -predicates "$(PREDICATES)" -OCAMLDEP = ocamldep -OCAMLFIND = ocamlfind -OCAMLC = $(OCAMLFIND) ocamlc $(OCAMLOPTIONS) -OCAMLOPT = $(OCAMLFIND) ocamlopt $(OCAMLOPTIONS) - -LIBRARIES = $(shell ocamlfind query -recursive -predicates "byte $(PREDICATES)" -format "%d/%a" $(REQUIRES)) -LIBRARIES_OPT = $(shell ocamlfind query -recursive -predicates "native $(PREDICATES)" -format "%d/%a" $(REQUIRES)) - -all: touch -opt: touch.opt - -DEPOBJS = touch.ml - -TOUCHOBJS = touch.cmo - -depend: - $(OCAMLDEP) $(DEPOBJS) > .depend - -touch: $(TOUCHOBJS) $(LIBRARIES) - $(OCAMLC) -linkpkg -o touch $(TOUCHOBJS) - -touch.opt: $(TOUCHOBJS:.cmo=.cmx) $(LIBRARIES_OPT) - $(OCAMLOPT) -linkpkg -o touch.opt $(TOUCHOBJS:.cmo=.cmx) - -.SUFFIXES: .ml .mli .cmo .cmi .cmx -.ml.cmo: $(LIBRARIES) - $(OCAMLC) -c $< -.mli.cmi: $(LIBRARIES) - $(OCAMLC) -c $< -.ml.cmx: $(LIBRARIES_OPT) - $(OCAMLOPT) -c $< - -clean: - rm -f *.cm[iox] *.o touch touch.opt - -.PHONY: clean - -include .depend