diff options
author | B. Watson <yalhcru@gmail.com> | 2016-02-19 18:21:33 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-02-19 18:21:33 -0500 |
commit | 78b6043240530e5d66c5b1c5bcfff5a0afdf02f1 (patch) | |
tree | 59c52ab64d8127371d90f2fe44f90b0d9a9894e8 /Makefile | |
parent | 7898133f92aebd3d44e3982931e69d90976d0b3c (diff) | |
download | taipan-78b6043240530e5d66c5b1c5bcfff5a0afdf02f1.tar.gz |
add clean to all test targets
Diffstat (limited to 'Makefile')
-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 |