summaryrefslogtreecommitdiffhomepage
path: root/libtomcrypt/testprof/makefile.icc
diff options
context:
space:
mode:
Diffstat (limited to 'libtomcrypt/testprof/makefile.icc')
-rw-r--r--libtomcrypt/testprof/makefile.icc20
1 files changed, 20 insertions, 0 deletions
diff --git a/libtomcrypt/testprof/makefile.icc b/libtomcrypt/testprof/makefile.icc
new file mode 100644
index 0000000..60628ce
--- /dev/null
+++ b/libtomcrypt/testprof/makefile.icc
@@ -0,0 +1,20 @@
+CFLAGS += -I../src/headers -I./
+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
+
+ifndef LIBTEST_S
+ LIBTEST_S = libtomcrypt_prof.a
+endif
+
+default: $(LIBTEST_S)
+
+$(LIBTEST_S): $(OBJECTS)
+ $(AR) $(ARFLAGS) $@ $(OBJECTS)
+ ranlib $@
+
+clean:
+ rm -f *.o *.a
+