Merge from vendor branch OPENSSL:
[dragonfly.git] / tools / tools / crypto / Makefile
1 #       $FreeBSD: src/tools/tools/crypto/Makefile,v 1.2.2.2 2003/06/03 00:13:13 sam Exp $
2 #       $DragonFly: src/tools/tools/crypto/Makefile,v 1.3 2004/01/21 21:05:15 dillon Exp $
3
4 ALL=    cryptokeytest cryptostats \
5         ubsecstats hifnstats ipsecstats
6
7 all:    ${ALL}
8
9 # program to test symmetric crypto functions
10 # removed - not under free license as indicated by Theo De Raadt
11 #cryptotest: cryptotest.c
12 #       ${CC} -o cryptotest cryptotest.c
13
14 # program to test asymmetric crypto functions
15 cryptokeytest: cryptokeytest.c
16         ${CC} -o cryptokeytest cryptokeytest.c -lcrypto
17
18 # program to dump statistics kept by the core crypto code
19 cryptostats: cryptostats.c
20         ${CC} -o cryptostats cryptostats.c
21
22 # program to print statistics kept by the Broadcom driver
23 ubsecstats: ubsecstats.c
24         ${CC} -o ubsecstats ubsecstats.c
25
26 # program to print statistics kept by the HIFN driver
27 hifnstats: hifnstats.c
28         ${CC} -o hifnstats hifnstats.c
29
30 # program to print statistics kept by fast ipsec
31 ipsecstats: ipsecstats.c
32         ${CC} -o ipsecstats ipsecstats.c
33
34 clean:
35         rm -f ${ALL} core a.out