diff options
author | B. Watson <yalhcru@gmail.com> | 2016-03-29 01:03:05 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-03-29 01:03:05 -0400 |
commit | dbbfe4d490d9090846cd3b9ff137ae69fc01ce5b (patch) | |
tree | 3aaead042d338cdcce38551df8323399a0ed881e /Makefile | |
parent | a5d2f9569decc946c0c2e863ed5aa0c07733ce67 (diff) | |
download | taipan-dbbfe4d490d9090846cd3b9ff137ae69fc01ce5b.tar.gz |
add "biginttest" make target, fix bad constant in bigint48.h
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -110,13 +110,17 @@ BIGNUM_CFLAGS=-DBIGNUM=BIGFLOAT # Uncomment these for experimental int48 big numbers. Support # hasn't been added, so leave these commented for now. -#BIGNUM_SRC=bigint48.c +#BIGNUM_SRC=bigint48.s #BIGNUM_HDRS=bignum.h bigint48.h #BIGNUM_CFLAGS=-DBIGNUM=BIGINT48 # Default rule for plain 'make' command is to build the binary. all: checkenv $(XEX) tags +biginttest: clean + $(MAKE) BIGNUM_SRC=bigint48.s BIGNUM_HDRS="bignum.h bigint48.h" BIGNUM_CFLAGS=-DBIGNUM=BIGINT48 + atari800 -nobasic $(XEX) + # I have F10 in my editor bound to 'make test', so: test: clean all atari800 -nobasic $(XEX) |