diff options
author | B. Watson <yalhcru@gmail.com> | 2016-01-17 04:08:52 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-01-17 04:08:52 -0500 |
commit | d72f8556e703eb8c84d055bfc5a8dcb2620ad61e (patch) | |
tree | 51326271fb66ee562b42911422c35ec9b28be362 /Makefile | |
parent | b9c1931a80c5d700ba356f9090e9a72f075377f7 (diff) | |
download | taipan-d72f8556e703eb8c84d055bfc5a8dcb2620ad61e.tar.gz |
restore colors/font on exit, fix bank withdrawal bug, rename bignum stuff
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -93,9 +93,14 @@ TAIMAIN_ASM_SRC=rand.s draw_lorcha.s timed_getch.s jsleep.s portstat.s clrtobot. # Comment these lines out to build without big number support. # This will stop being possible at some point. -BIGNUM_SRC=bignum.s -BIGNUM_HDRS=bignum.h -BIGNUM_CFLAGS=-DBIGNUM +BIGNUM_SRC=bigfloat.s +BIGNUM_HDRS=bignum.h bigfloat.h +BIGNUM_CFLAGS=-DBIGNUM=BIGFLOAT + +# Uncomment these for experimental int48 big numbers +#BIGNUM_SRC=bigint48.c +#BIGNUM_HDRS=bignum.h bigint48.h +#BIGNUM_CFLAGS=-DBIGNUM=BIGINT48 # Default rule for plain 'make' command is to build the binary. all: $(XEX) |