2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-19 00:17:12 +01:00
waf/docs/book/dag_nodes.dot
2011-09-10 11:13:51 +02:00

13 lines
325 B
Plaintext

digraph G {
foo [label="foo.txt",fillcolor="#aef9a5",style=filled]
bar [label="bar.txt",fillcolor="#aef9a5",style=filled]
wscript [label="wscript",fillcolor="#aef9a5",style=filled]
foobar [label="foobar.txt",fillcolor="#aef9a5",style=filled]
wscript -> foo;
wscript -> bar;
foo -> foobar;
bar -> foobar;
}