whoops it's 16 levels not 8 :D
This commit is contained in:
parent
1165c19c8e
commit
77606d464e
2 changed files with 7 additions and 2 deletions
9
Makefile
9
Makefile
|
@ -1,3 +1,5 @@
|
|||
.FAKE : all test clean
|
||||
|
||||
all : rickroll.xex
|
||||
|
||||
# reminder: $< is input
|
||||
|
@ -9,8 +11,11 @@ all : rickroll.xex
|
|||
%.o : %.s
|
||||
ca65 -v -t atari -o $@ $<
|
||||
|
||||
%.xex : %.o mono8.o atari-asm-xex.cfg
|
||||
ld65 -v -C ./atari-asm-xex.cfg -o $@ mono8.o $<
|
||||
%.xex : %.o mono16.o atari-asm-xex.cfg
|
||||
ld65 -v -C ./atari-asm-xex.cfg -o $@ mono16.o $<
|
||||
|
||||
test : all
|
||||
atari800 rickroll.xex
|
||||
|
||||
clean :
|
||||
rm -f *.xex
|
||||
|
|
Loading…
Reference in a new issue