diff options
-rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -67,6 +67,17 @@ all: $(XEX) test: all atari800 -nobasic $(XEX) +# The above is fast & easy, but from time to time it's necessary +# to test slow loading, make sure the title screen stuff works OK. +testatr: taipan.atr + atari800 -nobasic -nopatch taipan.atr + +taipan.atr: all + cp ~/dos_20s.atr taipan.atr + cp taipan.xex AUTORUN.SYS + axe -w AUTORUN.SYS taipan.atr + rm -f AUTORUN.SYS + # old title #$(XEX): taimain.xex taifont.xex title.xex # cat taifont.xex title.xex taimain.xex > $(XEX) @@ -160,7 +171,7 @@ convfont: convfont.c # Obligatory clean and distclean rules. clean: - rm -f *.o *.lst convfont *.xex AUTORUN.SYS + rm -f *.o *.lst convfont *.xex AUTORUN.SYS taipan.atr distclean: clean rm -f *~ core .*.swp 1.* 2.* 1 2 3 map map.* *.map a b c foo bar baz |