mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-19 00:17:12 +01:00
13 lines
325 B
Plaintext
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;
|
|
}
|
|
|