comparison testprof/makefile.icc @ 280:59400faa4b44 libtomcrypt-orig libtomcrypt-1.05

Re-import libtomcrypt 1.05 for cleaner propagating. From crypt-1.05.tar.bz2, SHA1 of 88250202bb51570dc64f7e8f1c943cda9479258f
author Matt Johnston <matt@ucc.asn.au>
date Wed, 08 Mar 2006 12:58:00 +0000
parents
children d5faf4814ddb
comparison
equal deleted inserted replaced
-1:000000000000 280:59400faa4b44
1 CFLAGS += -I../src/headers -I./
2 CC=icc
3
4 OBJECTS = base64_test.o cipher_hash_test.o der_tests.o dh_tests.o \
5 dsa_test.o ecc_test.o mac_test.o modes_test.o pkcs_1_test.o rsa_test.o \
6 store_test.o test.o x86_prof.o
7
8 default: libtomcrypt_prof.a
9
10 libtomcrypt_prof.a: $(OBJECTS)
11 $(AR) $(ARFLAGS) libtomcrypt_prof.a $(OBJECTS)
12
13 clean:
14 rm -f *.o *.a
15