You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
waf_old/docs/book/dag_nodes.dot

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;
}