asm-cat/Makefile

10 lines
102 B
Makefile
Raw Normal View History

2022-10-04 04:11:36 -07:00
cat: cat.o
ld -o cat cat.o
cat.o: cat.s
2022-10-04 04:25:37 -07:00
nasm -f elf64 cat.s
2022-10-04 04:11:36 -07:00
.PHONY: clean
clean:
rm -f cat.o cat