Mercurial > dropbear
comparison demos/test/makefile.shared @ 143:5d99163f7e32 libtomcrypt-orig
import of libtomcrypt 0.99
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 19 Dec 2004 11:34:45 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
15:6362d3854bb4 | 143:5d99163f7e32 |
---|---|
1 # make test harness, it is good. | |
2 CFLAGS += -Wall -W -Os -I../../ -I./ | |
3 | |
4 # if you're not debugging | |
5 CFLAGS += -fomit-frame-pointer | |
6 | |
7 default: test | |
8 | |
9 #if you don't have mpi.o | |
10 #MPISHARED=-ltommath | |
11 | |
12 OBJECTS=test.o cipher_hash_test.o mac_test.o modes_test.o \ | |
13 pkcs_1_test.o store_test.o rsa_test.o ecc_test.o dsa_test.o dh_tests.o der_tests.o | |
14 | |
15 test: $(OBJECTS) | |
16 libtool --mode=link gcc $(CFLAGS) $(OBJECTS) -o test -ltomcrypt $(MPISHARED) | |
17 | |
18 clean: | |
19 rm -f test *.o *.obj *.exe *~ |