summaryrefslogtreecommitdiff
path: root/.build
diff options
context:
space:
mode:
Diffstat (limited to '.build')
-rw-r--r--.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/.build b/.build
index fca48dd..e35e8b6 100644
--- a/.build
+++ b/.build
@@ -3,4 +3,6 @@ this.c = cook.c
this.ld_args = []
this.deps = []
-this.c.exe("vol", this('test').link)
+objects = this.c.cc(deps = [this('test')])
+
+this.c.exe("vol", objects)