]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/metadata/create2/touch/Makefile
Initial revision
[helm.git] / helm / metadata / create2 / touch / Makefile
index 2d7ef5a8a3e17b63762cd56eea3a38bf6088922f..636a804daba51c14f70aba9db3c6cd105ff927c7 100644 (file)
@@ -1,41 +1,36 @@
-OCAMLOPTIONS = -package netstring -package netclient -package pxp
-
+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 = csc_pxp_reader.ml configuration.ml \
-          clientHTTP.ml clientHTTP.mli cic.ml deannotate.ml \
-          uriManager.ml uriManager.mli getter.ml getter.mli \
-          pxpUriResolver.ml cicParser3.ml cicParser3.mli \
-          cicParser2.ml cicParser2.mli cicParser.ml \
-          cicParser.mli touch.ml
+DEPOBJS = touch.ml
 
-TOUCHOBJS = csc_pxp_reader.cmo configuration.cmo \
-            clientHTTP.cmo cic.cmo deannotate.cmo \
-            uriManager.cmo getter.cmo pxpUriResolver.ml \
-            cicParser3.cmo cicParser2.cmo cicParser.cmo \
-            touch.cmo
+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: