stuff
This commit is contained in:
commit
e6c05d0f66
3 changed files with 225 additions and 0 deletions
14
Makefile
Normal file
14
Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
.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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue