File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,25 @@ COMPILER=../bin/troupec
22
33build :
44 mkdir -p out
5- # Standard Library
5+
6+ # No dependencies
67 $(COMPILER) ./Number.trp -l
78 $(COMPILER) ./List.trp -l
89 $(COMPILER) ./ThreadUtil.trp -l
10+
11+ # Dependency on `List`
912 $(COMPILER) ./ListPair.trp -l
13+ $(COMPILER) ./Unit.trp -l
1014 $(COMPILER) ./DeclassifyUtil.trp -l
15+ $(COMPILER) ./StencilVector.trp -l
16+
17+ # Dependency on `List` and `Number`
1118 $(COMPILER) ./String.trp -l
19+
20+ # Dependency on `Number`, `String`, and `List`
1221 $(COMPILER) ./Hash.trp -l
13- $(COMPILER) ./Unit.trp -l
14- $(COMPILER) ./StencilVector.trp -l
22+
23+ # Dependency on `List`, `ListPair`, and `StencilVector`
1524 $(COMPILER) ./HashMap.trp -l
1625 $(COMPILER) ./HashSet.trp -l
1726
You can’t perform that action at this time.
0 commit comments