from-scratch/stages/as0/Makefile
2026-06-07 00:11:58 +02:00

13 lines
218 B
Makefile

test.bin: test.rs as0.o
rustc -Clink-arg=-fuse-ld=mold -Clink-arg=as0.o --edition=2024 --test -g $< -o $@
as0.o: as0.asm
nasm -g -f elf64 -o as0.o as0.asm
test: test.bin
./test.bin
clean:
rm -f as0.o test.bin