tanya/arch/build.ninja

11 lines
202 B
Plaintext
Raw Normal View History

2017-09-08 19:52:17 +02:00
rule gas
command = gcc -c $in -o $out
rule archive
command = ar rcs $out $in
build abs.o: gas x64/linux/math/abs.S
2017-09-08 19:52:17 +02:00
build syscall.o: gas x64/linux/syscall.S
build tanya.a: archive syscall.o abs.o