diff options
Diffstat (limited to 'benchmarks/tcpblast/Makefile')
-rw-r--r-- | benchmarks/tcpblast/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/benchmarks/tcpblast/Makefile b/benchmarks/tcpblast/Makefile index 1a696c7e326d..cd4917f60b3b 100644 --- a/benchmarks/tcpblast/Makefile +++ b/benchmarks/tcpblast/Makefile @@ -5,19 +5,20 @@ PORTNAME= tcpblast PORTVERSION= 1.1 PORTREVISION= 1 CATEGORIES= benchmarks net ipv6 +MASTER_SITES= # none DISTFILES= # none MAINTAINER= ports@FreeBSD.org COMMENT= Measures the throughput of a TCP connection +NO_WRKSUBDIR= yes + PLIST_FILES= bin/tcpblast -USES= uidfix -WRKSRC= ${WRKDIR}/src +do-build: + ${CC} ${CFLAGS} ${FILESDIR}/${PORTNAME}.c -o ${WRKDIR}/${PORTNAME} -do-extract: - @${RM} -rf ${WRKDIR} - @${MKDIR} ${WRKDIR} - ${CP} -RP ${.CURDIR}/src ${WRKDIR} +do-install: + ${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include <bsd.port.mk> |