summaryrefslogtreecommitdiff
path: root/.build
diff options
context:
space:
mode:
authorAlejandro Sior <aho@sior.be>2022-07-30 22:53:58 +0200
committerAlejandro Sior <aho@sior.be>2022-07-30 22:53:58 +0200
commitab4e773dacc5411b7ede04950b07209dc606ad2f (patch)
tree6032329627c28565381c10cc47de146fc2c03b77 /.build
cook: add basic makefile generation
Diffstat (limited to '.build')
-rw-r--r--.build9
1 files changed, 9 insertions, 0 deletions
diff --git a/.build b/.build
new file mode 100644
index 0000000..281fc67
--- /dev/null
+++ b/.build
@@ -0,0 +1,9 @@
+global asm
+asm = Vec(
+ "asm",
+ lambda i: "%s.o" % (i),
+ "/usr/bin/nasm",
+ lambda o, i, ea: "-f elf64 %s -o %s %s" % (i, o, ea)
+)
+
+subdir("test") \ No newline at end of file