Fix static library order, libtomcrypt depends on libtommath

--HG--
branch : ecc
This commit is contained in:
Matt Johnston 2013-05-21 13:20:02 +08:00
parent 0475594cb2
commit aced7b5b00

View File

@ -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 \