mandel-6502/Makefile

19 lines
232 B
Makefile
Raw Normal View History

2022-12-29 05:08:16 +00:00
.PHONY : clean all
all : mandel.xex
mandel.xex : mandel.o tables.o
ld65 -C ./atari-asm-xex.cfg -o $@ $+
2022-12-29 05:08:16 +00:00
%.o : %.s
ca65 -o $@ $<
tables.s : tables.js
node tables.js > tables.s
2022-12-29 05:08:16 +00:00
clean :
rm -f tables.s
2022-12-29 05:08:16 +00:00
rm -f *.o
rm -f *.xex