retro1/software/retro1-tests/monitor-test/Makefile

13 lines
209 B
Makefile
Raw Normal View History

2017-04-17 17:09:33 +00:00
SOURCES = acia.s65 string.s65 main.s65
%.o: %.s65
ca65 -o $@ -l $(@:.o=.lst) $<
all: firmware
firmware: $(SOURCES:.s65=.o)
ld65 -C firmware.cfg -Ln firmware.lbl -o $@ $^
clean:
rm -f firmware *.o *.lst