mandel-6502/Makefile

19 lines
265 B
Makefile
Raw Normal View History

2022-12-29 05:08:16 +00:00
.PHONY : clean all
all : mandel.xex
2024-12-30 04:37:58 +00:00
mandel.xex : mandel.o tables.o atari-asm-xex.cfg
ld65 -C ./atari-asm-xex.cfg -o $@ mandel.o tables.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