1
Fork 0
xchg-rax-rax/Makefile
2023-09-15 11:57:37 +00:00

9 lines
159 B
Makefile

%.o: %.asm
nasm -felf64 $<
%: %.o
gcc -z noexecstack -o $@ $<
template:
@echo "Copy template.asm to \$$name.asm and run \`make \$$name\`"
.PHONY: template