summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-05-21 13:20:02 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-05-21 13:20:02 +0800
commitaced7b5b00b4eb2c5844b1529964ddbf1ea9afa7 (patch)
treef4b44a641586a61df9eababb4aa6505eeb2ad103
parent0475594cb24e14b77ffb048bf1c5e18aba6d9f57 (diff)
Fix static library order, libtomcrypt depends on libtommath
--HG-- branch : ecc
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 8d8d279..4f13d1d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -17,9 +17,9 @@ LTC=libtomcrypt/libtomcrypt.a
LTM=libtommath/libtommath.a
ifeq (@BUNDLED_LIBTOM@, 1)
-LIBTOM_DEPS=$(LTM) $(LTC)
+LIBTOM_DEPS=$(LTC) $(LTM)
CFLAGS+=-I$(srcdir)/libtomcrypt/src/headers/
-LIBS+=$(LTM) $(LTC)
+LIBS+=$(LTC) $(LTM)
endif
COMMONOBJS=dbutil.o buffer.o \