Initial import from FreeBSD RELENG_4:
[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
3 ALL=    cryptotest cryptokeytest cryptostats \
4         ubsecstats hifnstats ipsecstats
5
6 all:    ${ALL}
7
8 # program to test symmetric crypto functions
9 cryptotest: cryptotest.c
10         ${CC} -o cryptotest cryptotest.c
11
12 # program to test asymmetric crypto functions
13 cryptokeytest: cryptokeytest.c
14         ${CC} -o cryptokeytest cryptokeytest.c -lcrypto
15
16 # program to dump statistics kept by the core crypto code
17 cryptostats: cryptostats.c
18         ${CC} -o cryptostats cryptostats.c
19
20 # program to print statistics kept by the Broadcom driver
21 ubsecstats: ubsecstats.c
22         ${CC} -o ubsecstats ubsecstats.c
23
24 # program to print statistics kept by the HIFN driver
25 hifnstats: hifnstats.c
26         ${CC} -o hifnstats hifnstats.c
27
28 # program to print statistics kept by fast ipsec
29 ipsecstats: ipsecstats.c
30         ${CC} -o ipsecstats ipsecstats.c
31
32 clean:
33         rm -f ${ALL} core a.out