14 lines
146 B
Makefile
14 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
|
|
|