1*404b540aSrobert# Blatantly ripped out of the graphviz examples and modified. -pme 2*404b540aSrobertdigraph v3conf { 3*404b540aSrobert size="6,6"; 4*404b540aSrobert node [color=lightblue2, style=filled]; 5*404b540aSrobert "aclocal.m4" -> "acinclude.m4"; 6*404b540aSrobert "configure" -> "aclocal.m4"; 7*404b540aSrobert "configure" -> "configure.ac"; 8*404b540aSrobert "configure" -> "crossconfig.m4"; 9*404b540aSrobert "configure" -> "linkage.m4"; 10*404b540aSrobert "[*/]Makefile.in" -> "Makefile.am"; 11*404b540aSrobert "[*/]Makefile.in" -> "configure.ac"; 12*404b540aSrobert "config.h.in" -> "acconfig.h"; 13*404b540aSrobert "config.h.in" -> "configure.ac"; 14*404b540aSrobert} 15