summaryrefslogtreecommitdiff
path: root/.build
diff options
context:
space:
mode:
Diffstat (limited to '.build')
-rw-r--r--.build7
1 files changed, 6 insertions, 1 deletions
diff --git a/.build b/.build
index 7f400fa..37bce4d 100644
--- a/.build
+++ b/.build
@@ -1,5 +1,10 @@
+this.include_dirs = [this.cwd()]
+
test = this('test')
+this.objects = this.c.cc.gen('main.c', include_dirs=this.include_dirs)
+
this.c.exe('vol',
- test.link
+ this.objects,
+ test.objects
)