Parallelize in_ifaddrhead operation
[dragonfly.git] / tools / tools / crypto / Makefile
blob8b1baef50a3f327455427361cf808706b7b61c7d
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 $
4 ALL= cryptokeytest cryptostats \
5 ubsecstats hifnstats ipsecstats
7 all: ${ALL}
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
14 # program to test asymmetric crypto functions
15 cryptokeytest: cryptokeytest.c
16 ${CC} -o cryptokeytest cryptokeytest.c -lcrypto
18 # program to dump statistics kept by the core crypto code
19 cryptostats: cryptostats.c
20 ${CC} -o cryptostats cryptostats.c
22 # program to print statistics kept by the Broadcom driver
23 ubsecstats: ubsecstats.c
24 ${CC} -o ubsecstats ubsecstats.c
26 # program to print statistics kept by the HIFN driver
27 hifnstats: hifnstats.c
28 ${CC} -o hifnstats hifnstats.c
30 # program to print statistics kept by fast ipsec
31 ipsecstats: ipsecstats.c
32 ${CC} -o ipsecstats ipsecstats.c
34 clean:
35 rm -f ${ALL} core a.out