xref: /dragonfly/tools/tools/crypto/Makefile (revision 1ab20d67)
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
4ALL=	cryptokeytest cryptostats \
5	ubsecstats hifnstats ipsecstats
6
7all:	${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
15cryptokeytest: cryptokeytest.c
16	${CC} -o cryptokeytest cryptokeytest.c -lcrypto
17
18# program to dump statistics kept by the core crypto code
19cryptostats: cryptostats.c
20	${CC} -o cryptostats cryptostats.c
21
22# program to print statistics kept by the Broadcom driver
23ubsecstats: ubsecstats.c
24	${CC} -o ubsecstats ubsecstats.c
25
26# program to print statistics kept by the HIFN driver
27hifnstats: hifnstats.c
28	${CC} -o hifnstats hifnstats.c
29
30# program to print statistics kept by fast ipsec
31ipsecstats: ipsecstats.c
32	${CC} -o ipsecstats ipsecstats.c
33
34clean:
35	rm -f ${ALL} core a.out
36