xref: /dragonfly/tools/tools/crypto/Makefile (revision 984263bc)
1#	$FreeBSD: src/tools/tools/crypto/Makefile,v 1.2.2.2 2003/06/03 00:13:13 sam Exp $
2
3ALL=	cryptotest cryptokeytest cryptostats \
4	ubsecstats hifnstats ipsecstats
5
6all:	${ALL}
7
8# program to test symmetric crypto functions
9cryptotest: cryptotest.c
10	${CC} -o cryptotest cryptotest.c
11
12# program to test asymmetric crypto functions
13cryptokeytest: cryptokeytest.c
14	${CC} -o cryptokeytest cryptokeytest.c -lcrypto
15
16# program to dump statistics kept by the core crypto code
17cryptostats: cryptostats.c
18	${CC} -o cryptostats cryptostats.c
19
20# program to print statistics kept by the Broadcom driver
21ubsecstats: ubsecstats.c
22	${CC} -o ubsecstats ubsecstats.c
23
24# program to print statistics kept by the HIFN driver
25hifnstats: hifnstats.c
26	${CC} -o hifnstats hifnstats.c
27
28# program to print statistics kept by fast ipsec
29ipsecstats: ipsecstats.c
30	${CC} -o ipsecstats ipsecstats.c
31
32clean:
33	rm -f ${ALL} core a.out
34