diff options
-rw-r--r-- | Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -118,7 +118,7 @@ BIGNUM_CFLAGS=-DBIGNUM=BIGFLOAT all: checkenv $(XEX) tags # I have F10 in my editor bound to 'make test', so: -test: all +test: clean all atari800 -nobasic $(XEX) # Check the build environment. @@ -162,27 +162,29 @@ help: # 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. -dos2: all +dos2: clean all cp dos2.atr.in dos2.atr cp taipan.xex TAIPAN axe -w TAIPAN dos2.atr rm -f TAIPAN atari800 -nobasic -nopatch dos2.atr -fenders: all +fenders: clean all cp taipan.xex TAIPAN cp fenders.atr.in fenders.atr axe -w TAIPAN fenders.atr rm -f TAIPAN atari800 -nopatch fenders.atr -mydos: all +mydos: clean all cp taipan.xex TAIPAN cp mydos.atr.in mydos.atr axe -w TAIPAN mydos.atr rm -f TAIPAN atari800 -nopatch mydos.atr +# We use our own custom conio instead of the one cc65 ships. +# see conion/README for details. conio/conio.lib: $(MAKE) -C conio @@ -358,7 +360,7 @@ taipan.cart: taipan.rom mkcart cart: checkenv taipan.cart -testcart: cart +testcart: clean cart atari800 taipan.cart |