mandel-6502/Makefile

15 lines
146 B
Makefile
Raw Permalink Normal View History

2022-12-29 05:08:16 +00: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