mandel-6502/Makefile

14 lines
146 B
Makefile
Raw Normal View History

2022-12-28 21:08:16 -08:00
.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