asm-cat/Makefile

10 lines
108 B
Makefile

cat: cat.o
ld -o cat cat.o
cat.o: cat.nasm
nasm -f elf64 cat.nasm
.PHONY: clean
clean:
rm -f cat.o cat