Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[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.2 2003/06/17 04:29:11 dillon Exp $
3
4 ALL=    cryptotest cryptokeytest cryptostats \
5         ubsecstats hifnstats ipsecstats
6
7 all:    ${ALL}
8
9 # program to test symmetric crypto functions
10 cryptotest: cryptotest.c
11         ${CC} -o cryptotest cryptotest.c
12
13 # program to test asymmetric crypto functions
14 cryptokeytest: cryptokeytest.c
15         ${CC} -o cryptokeytest cryptokeytest.c -lcrypto
16
17 # program to dump statistics kept by the core crypto code
18 cryptostats: cryptostats.c
19         ${CC} -o cryptostats cryptostats.c
20
21 # program to print statistics kept by the Broadcom driver
22 ubsecstats: ubsecstats.c
23         ${CC} -o ubsecstats ubsecstats.c
24
25 # program to print statistics kept by the HIFN driver
26 hifnstats: hifnstats.c
27         ${CC} -o hifnstats hifnstats.c
28
29 # program to print statistics kept by fast ipsec
30 ipsecstats: ipsecstats.c
31         ${CC} -o ipsecstats ipsecstats.c
32
33 clean:
34         rm -f ${ALL} core a.out