]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/Makefile.in
Added new target libraries.ps (and .dep.dot).
[helm.git] / helm / ocaml / Makefile.in
index d5917ee5027555efb5356fad89a90923a2ba9cda..96a7522d922e05d1580d218507a1562daf5c7e0e 100644 (file)
@@ -2,7 +2,7 @@
 MODULES = xml urimanager getter pxp cic cic_annotations cic_annotations_cache \
           cic_cache cic_proof_checking cic_textual_parser \
           tex_cic_textual_parser cic_unification mathql mathql_interpreter \
-          mquery_generator tactics
+          mathql_generator mathql_test tactics
 
 OCAMLFIND_DEST_DIR = @OCAMLFIND_DEST_DIR@
 OCAMLFIND_META_DIR = @OCAMLFIND_META_DIR@
@@ -39,3 +39,14 @@ $(MODULES:%=%.clean):
        cd $(@:%.clean=%) && make clean
 META.helm-%: META.helm-%.src
        cp $< $@ && echo "directory=\"$(CWD)/$(@:META.helm-%=%)\"" >> $@
+
+.PHONY: .dep.dot
+.dep.dot:
+       echo "digraph G {" > $@
+       echo "   rankdir = TB ;" >> $@
+       for i in $(MODULES); do ocamlfind query helm-$$i -recursive -p-format | grep helm | sed "s/^helm-/ \"$$i\" -> \"/g" | sed "s/$$/\";/g" >> $@ ; done
+       mv $@ $@.old ; ./simplify_deps/simplify_deps.opt < $@.old > $@ ; rm $@.old
+       echo "}" >> $@
+
+libraries.ps: .dep.dot
+       dot -Tps -o $@ $<