mandel-6502/Makefile
2022-12-28 21:08:16 -08:00

15 lines
146 B
Makefile

.PHONY : clean all
all : mandel.xex
%.xex : %.o
ld65 -C atari-asm-xex.cfg -o $@ $<
%.o : %.s
ca65 -o $@ $<
clean :
rm -f *.o
rm -f *.xex