2022-12-28 21:08:16 -08:00
|
|
|
.PHONY : clean all
|
|
|
|
|
|
|
|
|
|
all : mandel.xex
|
|
|
|
|
|
2024-12-29 20:37:58 -08:00
|
|
|
mandel.xex : mandel.o tables.o atari-asm-xex.cfg
|
2025-06-23 08:17:39 -07:00
|
|
|
ld65 -C ./atari-asm-xex.cfg --mapfile mandel.map -o $@ mandel.o tables.o
|
2022-12-28 21:08:16 -08:00
|
|
|
|
|
|
|
|
%.o : %.s
|
|
|
|
|
ca65 -o $@ $<
|
|
|
|
|
|
2023-02-11 12:24:48 -08:00
|
|
|
tables.s : tables.js
|
|
|
|
|
node tables.js > tables.s
|
|
|
|
|
|
2022-12-28 21:08:16 -08:00
|
|
|
clean :
|
2023-02-11 12:24:48 -08:00
|
|
|
rm -f tables.s
|
2022-12-28 21:08:16 -08:00
|
|
|
rm -f *.o
|
|
|
|
|
rm -f *.xex
|
2025-06-23 08:17:39 -07:00
|
|
|
rm -f mandel.map
|
|
|
|
|
|
2022-12-28 21:08:16 -08:00
|
|
|
|