2022-12-29 05:08:16 +00:00
|
|
|
.PHONY : clean all
|
|
|
|
|
|
|
|
all : mandel.xex
|
|
|
|
|
2023-02-11 20:24:48 +00:00
|
|
|
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 $@ $<
|
|
|
|
|
2023-02-11 20:24:48 +00:00
|
|
|
tables.s : tables.js
|
|
|
|
node tables.js > tables.s
|
|
|
|
|
2022-12-29 05:08:16 +00:00
|
|
|
clean :
|
2023-02-11 20:24:48 +00:00
|
|
|
rm -f tables.s
|
2022-12-29 05:08:16 +00:00
|
|
|
rm -f *.o
|
|
|
|
rm -f *.xex
|
|
|
|
|