summaryrefslogtreecommitdiff
path: root/arch/build.ninja
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2021-03-12 08:48:35 +0100
committerEugen Wissner <belka@caraus.de>2021-03-12 08:48:35 +0100
commit0fcc83d00eb9d0699167bf105d522e7d23a44d32 (patch)
tree5cb0c97b04ec54cfba823e6c89dac99fbd5dcfdf /arch/build.ninja
parentf27f62b80abf8b237d5c4bf57427fd50aa17e2b0 (diff)
downloadtanya-0fcc83d00eb9d0699167bf105d522e7d23a44d32.tar.gz
Remove the sys package
Diffstat (limited to 'arch/build.ninja')
-rw-r--r--arch/build.ninja14
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/build.ninja b/arch/build.ninja
deleted file mode 100644
index cf05696..0000000
--- a/arch/build.ninja
+++ /dev/null
@@ -1,14 +0,0 @@
-rule gas
- command = gcc -c $in -o $out
-
-rule archive
- command = ar rcs $out $in
-
-build abs.o: gas x64/linux/math/abs.S
-build log.o: gas x64/linux/math/log.S
-build equal.o: gas x64/linux/memory/equal.S
-build fill.o: gas x64/linux/memory/fill.S
-build copy.o: gas x64/linux/memory/copy.S
-build syscall.o: gas x64/linux/syscall.S
-
-build tanya.a: archive syscall.o copy.o fill.o equal.o log.o abs.o