diff options
| author | Alejandro Sior <aho@sior.be> | 2022-07-30 22:53:58 +0200 |
|---|---|---|
| committer | Alejandro Sior <aho@sior.be> | 2022-07-30 22:53:58 +0200 |
| commit | ab4e773dacc5411b7ede04950b07209dc606ad2f (patch) | |
| tree | 6032329627c28565381c10cc47de146fc2c03b77 /.build | |
cook: add basic makefile generation
Diffstat (limited to '.build')
| -rw-r--r-- | .build | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |
