Split implementation into dependency analysis and traversal.
[goals.git] / tests / test1.gl
1 # Test.
2
3 include "url.gl"
4
5 let foo = "bar"
6
7 goal all = : "file1.o", *file("file2.o")
8
9 goal clean = { }
10
11 goal compile (name) =
12 "%name.o" : "%name.c" {
13   echo %< "->" %@
14   touch %@
15 }