.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