mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
10 lines
254 B
Plaintext
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;
|
|
}
|
|
|