diff options
author | B. Watson <yalhcru@gmail.com> | 2016-02-28 02:56:41 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-02-28 02:56:41 -0500 |
commit | 8889d0f1bb00b3bb52afb92a1069112817ddbb81 (patch) | |
tree | 5200ddcb3d06cf87332b7f8117fbc147c642d317 /Makefile | |
parent | 9d60dc2142964aa7cb0e18049170455036a7b1d1 (diff) | |
download | taipan-8889d0f1bb00b3bb52afb92a1069112817ddbb81.tar.gz |
add procsizes target, rewrite get_item in asm, combine some functions, 7808 bytes free
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -253,7 +253,7 @@ taimain.xex: $(TAIMAIN_C_SRC) $(TAIMAIN_ASM_SRC) $(TAIMAIN_HDRS) $(BIGNUM_SRC) $ # taipan.c. This rule not used as part of the main build, it's only for # debugging. taipan.lst: taipan.c - $(CC) -m taipan.map $(CFLAGS) -c -o /dev/null -l taipan.lst -T taipan.c + $(CC) -m taipan.map $(CFLAGS) $(BIGNUM_CFLAGS) -c -o /dev/null -l taipan.lst -T taipan.c # Another such rule for sounds.c: sounds.lst: sounds.c sounds.h @@ -400,6 +400,10 @@ push: size: clean all $(PERL) size.pl $(TAIMAIN_ADDR) $(STACK_SIZE) +procsizes: clean all taipan.lst + $(PERL) procsizes.pl > procsizes + cat procsizes + # Cruft. Was used for testing the enemy ship animation. lorchatest: lorchatest.c draw_lorcha.s taifont.xex $(CC) -t atari -O -T -o lorchatest1.xex lorchatest.c draw_lorcha.s |