From f143c26024ce66383f1e7fd883aa8c239349000b Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 17 Oct 2019 10:01:11 -0400 Subject: [PATCH] Build tommath as part of compilation --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fc646ef5..73b86a29 100644 --- a/Makefile +++ b/Makefile @@ -162,7 +162,11 @@ dispatch.c : generate-c.scm $(CYCLONE) $< ./generate-c -libcyclone.a : $(CFILES) $(HEADERS) +libcyclone.a : $(CFILES) $(HEADERS) third-party/libtommath-1.1.0/libcyclonebn.a + +# JAE TODO: clean this up +third-party/libtommath-1.1.0/libcyclonebn.a : third-party/libtommath-1.1.0/*.c + cd third-party/libtommath-1.1.0 ; make LIBNAME=libcyclonebn.a hashset.o : hashset.c $(HEADERS) $(CCOMP) -c $< -o $@