diff options
author | B. Watson <yalhcru@gmail.com> | 2016-01-03 04:36:01 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-01-03 04:36:01 -0500 |
commit | 3e443ad06e61cf6f67c335f657b4010efc7993fe (patch) | |
tree | 329303487339afecac709ac645ed7f3b92c7b41b | |
parent | 52b3efa3cae299a2df153f3a33a6de3dc9b6d1ad (diff) | |
download | taipan-3e443ad06e61cf6f67c335f657b4010efc7993fe.tar.gz |
add target for testing without SIO patch
-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 |