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

13 lines
289 B
Makefile

SOURCES = krusader.asm
%.o: %.asm
ca65 -o $@ --feature force_range --feature labels_without_colons --feature leading_dot_in_identifiers --feature ubiquitous_idents -l $(@:.o=.lst) $<
all: firmware
firmware: $(SOURCES:.asm=.o)
cl65 -t none -o $@ $^
clean:
rm -f firmware *.o *.lst