annotate demos/test/makefile.icc @ 151:8fc624ea2521
libtomcrypt
Cleaning up various unused bits (des_*, rijndael, MDS for twofish)
author |
Matt Johnston <matt@ucc.asn.au> |
date |
Mon, 20 Dec 2004 14:25:33 +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 *~ |