18 lines
232 B
Makefile
18 lines
232 B
Makefile
.PHONY : clean all
|
|
|
|
all : mandel.xex
|
|
|
|
mandel.xex : mandel.o tables.o
|
|
ld65 -C ./atari-asm-xex.cfg -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
|
|
|