testprof: add missing object files to makefiles

This commit is contained in:
Steffen Jaeckel 2014-07-12 16:19:08 +02:00
parent 6ac2d6141d
commit 79bc7ef2e5
3 changed files with 4 additions and 3 deletions

View File

@ -3,7 +3,7 @@ CC=icc
OBJECTS = base64_test.o cipher_hash_test.o der_tests.o \
dsa_test.o ecc_test.o mac_test.o modes_test.o pkcs_1_test.o rsa_test.o \
store_test.o test_driver.o x86_prof.o katja_test.o
store_test.o test_driver.o x86_prof.o katja_test.o dh_test.o misc_test.o
ifndef LIBTEST_S
LIBTEST_S = libtomcrypt_prof.a

View File

@ -2,7 +2,8 @@ CFLAGS = /I../src/headers/ /I./ /Ox /DWIN32 /DLTC_SOURCE /W3 /Fo$@
OBJECTS=base64_test.obj cipher_hash_test.obj der_tests.obj \
dsa_test.obj ecc_test.obj mac_test.obj modes_test.obj pkcs_1_test.obj \
rsa_test.obj store_test.obj test_driver.obj x86_prof.obj katja_test.obj
rsa_test.obj store_test.obj test_driver.obj x86_prof.obj katja_test.obj \
dh_test.obj misc_test.obj
tomcrypt_prof.lib: $(OBJECTS)
lib /out:tomcrypt_prof.lib $(OBJECTS)

View File

@ -9,7 +9,7 @@ endif
OBJECTS = base64_test.o cipher_hash_test.o der_tests.o \
dsa_test.o ecc_test.o mac_test.o modes_test.o pkcs_1_test.o rsa_test.o \
store_test.o test_driver.o x86_prof.o katja_test.o
store_test.o test_driver.o x86_prof.o katja_test.o dh_test.o misc_test.o
ifndef LIBTEST
LIBTEST=libtomcrypt_prof.la