Browse Source

testprof: add missing object files to makefiles

Steffen Jaeckel 11 years ago
parent
commit
79bc7ef2e5
3 changed files with 4 additions and 3 deletions
  1. 1 1
      testprof/makefile.icc
  2. 2 1
      testprof/makefile.msvc
  3. 1 1
      testprof/makefile.shared

+ 1 - 1
testprof/makefile.icc

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

+ 2 - 1
testprof/makefile.msvc

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

+ 1 - 1
testprof/makefile.shared

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