-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathMakefile.dot
More file actions
39 lines (39 loc) · 985 Bytes
/
Makefile.dot
File metadata and controls
39 lines (39 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
digraph G {
n2[label="all", color="red"];
n11[label="data/abyss.txt", color="green"];
n6[label="data/isles.txt", color="green"];
n17[label="data/last.txt", color="green"];
n14[label="data/sierra.txt", color="green"];
n3[label="doc/count_report.html", color="red"];
n9[label="figures/abyss.png", color="red"];
n4[label="figures/isles.png", color="red"];
n15[label="figures/last.png", color="red"];
n12[label="figures/sierra.png", color="red"];
n10[label="results/abyss.dat", color="red"];
n5[label="results/isles.dat", color="red"];
n16[label="results/last.dat", color="red"];
n13[label="results/sierra.dat", color="red"];
n7[label="src/countwords.py", color="green"];
n8[label="src/plotcount.py", color="green"];
n3 -> n2 ;
n9 -> n3 ;
n4 -> n3 ;
n15 -> n3 ;
n12 -> n3 ;
n10 -> n9 ;
n8 -> n9 ;
n5 -> n4 ;
n8 -> n4 ;
n16 -> n15 ;
n8 -> n15 ;
n13 -> n12 ;
n8 -> n12 ;
n11 -> n10 ;
n7 -> n10 ;
n6 -> n5 ;
n7 -> n5 ;
n17 -> n16 ;
n7 -> n16 ;
n14 -> n13 ;
n7 -> n13 ;
}