summaryrefslogtreecommitdiff
path: root/.build
diff options
context:
space:
mode:
authorAlejandro W. Sior <aho@sior.be>2023-01-23 18:19:48 +0100
committerAlejandro W. Sior <aho@sior.be>2023-01-23 18:19:48 +0100
commitd0759d3282025f310ecd566c55dcf214b0cbb1b8 (patch)
tree705f9cd43a9429ee264ce100381f7e76f7dca8a1 /.build
parentddedac846b0788e3cff90a24b2c8109308b1e840 (diff)
cook: module reorganization
Diffstat (limited to '.build')
-rw-r--r--.build10
1 files changed, 5 insertions, 5 deletions
diff --git a/.build b/.build
index 2b5b4dd..fca48dd 100644
--- a/.build
+++ b/.build
@@ -1,6 +1,6 @@
-mod["ld_args"] = []
-mod["deps"] = []
+this.c = cook.c
-mod["vol"] = mod.exe("vol",
- mod("test").link,
- deps = mod.deps) \ No newline at end of file
+this.ld_args = []
+this.deps = []
+
+this.c.exe("vol", this('test').link)