waf/docs/book/dag_tasks.dot

10 lines
254 B
Plaintext
Raw Normal View History

2011-09-10 11:13:51 +02:00
digraph G {
A [label="cp: wscript -> foo.txt",fillcolor="#fffea6",style=filled]
B [label="cp: wscript -> bar.txt",fillcolor="#fffea6",style=filled]
C [label="cat: foo.txt, bar.txt -> foobar.txt",fillcolor="#fffea6",style=filled]
A -> C;
B -> C;
}