X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmetadata%2Fcreate2%2Ftouch%2FMakefile;h=636a804daba51c14f70aba9db3c6cd105ff927c7;hb=89262281b6e83bd2321150f81f1a0583645eb0c8;hp=5296fa723a0643c9d313c35b3635bc2485920d5f;hpb=025b60975434f3923071c60618bd1d92794816bf;p=helm.git diff --git a/helm/metadata/create2/touch/Makefile b/helm/metadata/create2/touch/Makefile index 5296fa723..636a804da 100644 --- a/helm/metadata/create2/touch/Makefile +++ b/helm/metadata/create2/touch/Makefile @@ -6,6 +6,9 @@ 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 @@ -16,18 +19,18 @@ TOUCHOBJS = touch.cmo depend: $(OCAMLDEP) $(DEPOBJS) > .depend -touch: $(TOUCHOBJS) +touch: $(TOUCHOBJS) $(LIBRARIES) $(OCAMLC) -linkpkg -o touch $(TOUCHOBJS) -touch.opt: $(TOUCHOBJS:.cmo=.cmx) +touch.opt: $(TOUCHOBJS:.cmo=.cmx) $(LIBRARIES_OPT) $(OCAMLOPT) -linkpkg -o touch.opt $(TOUCHOBJS:.cmo=.cmx) .SUFFIXES: .ml .mli .cmo .cmi .cmx -.ml.cmo: +.ml.cmo: $(LIBRARIES) $(OCAMLC) -c $< -.mli.cmi: +.mli.cmi: $(LIBRARIES) $(OCAMLC) -c $< -.ml.cmx: +.ml.cmx: $(LIBRARIES_OPT) $(OCAMLOPT) -c $< clean: