-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update with freebsd f74d1fffcb030edab4568c710378f8093cc45a74
- Loading branch information
Showing
11 changed files
with
2,415 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# $FreeBSD: src/tools/tools/crypto/Makefile,v 1.8 2004/09/07 18:35:00 sam Exp $ | ||
# | ||
# Copyright (c) 2018 Conrad Meyer <[email protected]> | ||
# Copyright (c) 2002, 2003 Sam Leffler, Errno Consulting | ||
# All rights reserved. | ||
# | ||
|
@@ -25,40 +25,22 @@ | |
# SUCH DAMAGE. | ||
# | ||
|
||
ALL= cryptotest cryptokeytest cryptostats \ | ||
ubsecstats hifnstats ipsecstats safestats | ||
BINDIR= /usr/local/bin | ||
PROGS= cryptocheck cryptotest cryptokeytest cryptostats \ | ||
hifnstats ipsecstats safestats | ||
MAN= | ||
BINDIR?= /usr/local/bin | ||
|
||
all: ${ALL} | ||
# cryptocheck: test symmetric crypto functions | ||
LIBADD.cryptocheck+= crypto util | ||
|
||
# program to test asymmetric crypto functions | ||
cryptokeytest: cryptokeytest.c | ||
${CC} -o cryptokeytest cryptokeytest.c -lcrypto | ||
# cryptokeytest: test asymmetric crypto functions | ||
LIBADD.cryptokeytest+= crypto | ||
|
||
# program to dump statistics kept by the core crypto code | ||
cryptostats: cryptostats.c | ||
${CC} -o cryptostats cryptostats.c | ||
# cryptostats: dump statistics kept by the core crypto code | ||
# hifnstats: print statistics kept by the HIFN driver | ||
# safestats: statistics kept by the SafeNet driver | ||
# ipsecstats: print statistics kept by fast ipsec | ||
|
||
# program to print statistics kept by the Broadcom driver | ||
ubsecstats: ubsecstats.c | ||
${CC} -o ubsecstats ubsecstats.c | ||
CLEANFILES+= core a.out | ||
|
||
# program to print statistics kept by the HIFN driver | ||
hifnstats: hifnstats.c | ||
${CC} -o hifnstats hifnstats.c | ||
|
||
# program to print statistics kept by the SafeNet driver | ||
safestats: safestats.c | ||
${CC} -o safestats safestats.c | ||
|
||
# program to print statistics kept by fast ipsec | ||
ipsecstats: ipsecstats.c | ||
${CC} -o ipsecstats ipsecstats.c | ||
|
||
clean: | ||
rm -f ${ALL} core a.out | ||
|
||
install: ${ALL} | ||
for i in ${ALL}; do \ | ||
install $$i ${DESTDIR}${BINDIR}; \ | ||
done | ||
.include <bsd.progs.mk> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.