summaryrefslogtreecommitdiffstats
path: root/sw-z80/hello/makefile
blob: 80e3459846b119e49902507c48713b44631e844d (plain)
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 $@ $<