]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/metadata/create2/touch/Makefile
Initial revision
[helm.git] / helm / metadata / create2 / touch / Makefile
index 5296fa723a0643c9d313c35b3635bc2485920d5f..636a804daba51c14f70aba9db3c6cd105ff927c7 100644 (file)
@@ -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: