2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 09:57:15 +01:00
waf/docs/book/dag_tasks.dot
2011-09-10 11:13:51 +02:00

10 lines
254 B
Plaintext

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