CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Yann Dirson <[EMAIL PROTECTED]> 05/03/09 13:32:48
Modified files:
. : Makefile.am
Log message:
added a deps.ps target to get the dependency graph from graph-includes
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/Makefile.am.diff?tr1=1.24&tr2=1.25&r1=text&r2=text
Patches:
Index: wesnoth/Makefile.am
diff -u wesnoth/Makefile.am:1.24 wesnoth/Makefile.am:1.25
--- wesnoth/Makefile.am:1.24 Thu Mar 3 22:19:57 2005
+++ wesnoth/Makefile.am Wed Mar 9 13:32:48 2005
@@ -101,3 +101,11 @@
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = config/config.rpath
+
+# latest graph-includes.pl can be found currently at
http://ydirson.free.fr/soft/wesnoth/graphs/
+deps.dot:
+ (cd $(top_srcdir)/src && graph-includes.pl -verbose -class wesnoth
-group 1 1 \
+ -color 2
widgets=linen,editor=cyan,server=pink,multiplayer=palegreen,serialization=steelblue1
\
+ `find -name '*.[ch]pp'|sed s,\./,,`) > $@
+%.ps: %.dot
+ dot -Tps $< > $@