diff options
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) |