retro1/software/retro1-tests/monitor2-test/Makefile
2017-04-17 10:09:33 -07:00

13 lines
180 B
Makefile

SOURCES = ewoz.s65
%.o: %.s65
ca65 -o $@ -l $(@:.o=.lst) $<
all: firmware
firmware: $(SOURCES:.s65=.o)
cl65 -C firmware.cfg -t none -o $@ $^
clean:
rm -f firmware *.o *.lst