Created
February 20, 2015 04:51
-
-
Save hirose31/d0faa2bfd28f0c3348fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph autoconf_automake { | |
graph [ fontname = "Helvetica" fontsize = 12 ] | |
node [ fontname = "Helvetica" fontsize = 12 shape = "box" | |
style=filled fillcolor=palegreen | |
] | |
edge [ fontname = "Helvetica" fontsize = 12 ] | |
aclocal_m4 [label="aclocal.m4"] | |
config_h_in [label="config.h.in"] | |
config_h [label="config.h"] | |
Makefile_am [label="Makefile.am" peripheries=2 fillcolor="#1D9F60" ] | |
Makefile_in [label="Makefile.in"] | |
configure_scan [label="configure.scan"] | |
configure_ac [label="configure.ac" peripheries=2 fillcolor="#1D9F60" ] | |
autoscan [ shape="invtriangle" style=filled fillcolor=pink ] | |
aclocal [ shape="invtriangle" style=filled fillcolor=pink ] | |
autoheader [ shape="invtriangle" style=filled fillcolor=pink ] | |
autoconf [ shape="invtriangle" style=filled fillcolor=pink ] | |
automake [ shape="invtriangle" style=filled fillcolor=pink ] | |
configure [ shape="invtriangle" style=filled fillcolor=pink ] | |
autoscan -> configure_scan | |
configure_scan -> configure_ac [ label = "rename" ] | |
configure_ac -> autoconf [ arrowhead = vee ] | |
autoconf -> configure | |
configure_ac -> autoheader [ arrowhead = vee ] | |
autoheader -> config_h_in | |
config_h_in -> configure [ arrowhead = vee ] | |
Makefile_am -> automake [ arrowhead = vee ] | |
automake -> Makefile_in | |
Makefile_in -> configure [ arrowhead = vee ] | |
configure -> Makefile | |
configure -> config_h | |
aclocal -> aclocal_m4 | |
# aclocal_m4 -> | |
} |
Author
hirose31
commented
Feb 20, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment