summaryrefslogtreecommitdiff
path: root/arch/build.ninja
blob: eff2eb99c90033687b7a758077f5f813f98cb49c (plain)
1
2
3
4
5
6
7
8
9
10
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 syscall.o: gas x64/linux/syscall.S

build tanya.a: archive syscall.o abs.o