From d72f8556e703eb8c84d055bfc5a8dcb2620ad61e Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sun, 17 Jan 2016 04:08:52 -0500 Subject: restore colors/font on exit, fix bank withdrawal bug, rename bignum stuff --- Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4375957..c3a46b4 100644 --- a/Makefile +++ b/Makefile @@ -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) -- cgit v1.2.3