diff options
Diffstat (limited to 'benchmarks/kttcp/Makefile')
-rw-r--r-- | benchmarks/kttcp/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/benchmarks/kttcp/Makefile b/benchmarks/kttcp/Makefile new file mode 100644 index 00000000000..a4ae400a656 --- /dev/null +++ b/benchmarks/kttcp/Makefile @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/06/29 01:07:19 thorpej Exp $ + +DISTNAME= kttcp-${VERSION} +CATEGORIES= benchmarks net +MASTER_SITES= # empty +DISTFILES= # empty + +MAINTAINER= thorpej@netbsd.org +COMMENT= kttcp kernel network throughput benchmark + +VERSION= 20020628 + +EXTRACT_ONLY= # empty +WRKSRC= ${WRKDIR} +NO_CHECKSUM= # defined + +MAKE_ENV+= BINDIR=${LOCALBASE}/bin MANDIR=${LOCALBASE}/man + +post-extract: + @for FILE in Makefile kttcp.c \ + ; do \ + ${CP} ${FILESDIR}/$$FILE ${WRKSRC}; \ + done + +.include "../../mk/bsd.pkg.mk" |