1 2 3 4 5 6 7 8 9 10 11
.PHONY: all disassemble clean all: hello.bin disassemble: hello.bin z80dasm $< clean: rm -f hello.bin hello.bin: hello.s z80asm -o $@ $<