mandel-6502/Makefile
Brooke Vibber fd954da47e Create map file for convenience
export a symbol and it'll appear in mandel.map
2025-06-23 08:17:39 -07:00

20 lines
305 B
Makefile

.PHONY : clean all
all : mandel.xex
mandel.xex : mandel.o tables.o atari-asm-xex.cfg
ld65 -C ./atari-asm-xex.cfg --mapfile mandel.map -o $@ mandel.o tables.o
%.o : %.s
ca65 -o $@ $<
tables.s : tables.js
node tables.js > tables.s
clean :
rm -f tables.s
rm -f *.o
rm -f *.xex
rm -f mandel.map