annotate demos/test/makefile.icc @ 164:cd1143579f00
libtomcrypt LTC_DB_0.44
mpi.c isn't needed if we're using libtommath seperately
author |
Matt Johnston <matt@ucc.asn.au> |
date |
Sun, 02 Jan 2005 17:19:46 +0000 |
parents |
5d99163f7e32 |
children |
|
rev |
line source |
15
|
1 # make test harness, it is good. |
|
2 CFLAGS += -O3 -xN -ip -I../../ -I./ |
|
3 CC=icc |
|
4 |
|
5 default: test |
|
6 |
|
7 OBJECTS=test.o cipher_hash_test.o mac_test.o modes_test.o \ |
143
|
8 pkcs_1_test.o store_test.o rsa_test.o ecc_test.o dsa_test.o dh_tests.o der_tests.o |
15
|
9 |
|
10 test: $(OBJECTS) |
|
11 $(CC) $(OBJECTS) -ltomcrypt -o test |
|
12 |
|
13 clean: |
|
14 rm -f test *.o *~ |