from-scratch/stages/as0/Makefile
2026-07-06 12:30:30 +02:00

16 lines
299 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
print_table: as0.o
ld -m elf_x86_64 -e _entry_print_table -o print_table as0.o
clean:
rm -f as0.o test.bin