summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1998-12-01 00:54:15 +0000
committerSatoshi Asami <asami@FreeBSD.org>1998-12-01 00:54:15 +0000
commit5f8fce0e796de3c6ab39db32be5ca7ba813bf4bc (patch)
tree349fc6ebd2b6bbca469a067a28ee1387c3fb24d3 /benchmarks
parentThis is the official INDEX for 2.2.8-RELEASE. There are 1,877 ports. (diff)
Don't try to do anything fancy and copy stuff under ${WRKDIR} so this works
with a read-only ports tree.
Notes
Notes: svn path=/head/; revision=14966
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/tcpblast/Makefile17
1 files changed, 7 insertions, 10 deletions
diff --git a/benchmarks/tcpblast/Makefile b/benchmarks/tcpblast/Makefile
index 1d5b8ed7b926..ecf12aa2e514 100644
--- a/benchmarks/tcpblast/Makefile
+++ b/benchmarks/tcpblast/Makefile
@@ -3,22 +3,19 @@
# Date created: 22 August 1994
# Whom: mr
#
-# $Id: Makefile,v 1.10 1995/11/22 11:37:02 asami Exp $
+# $Id: Makefile,v 1.11 1996/11/20 01:59:27 obrien Exp $
#
DISTNAME= tcpblast
PKGNAME= tcpblast-1.0
CATEGORIES= net benchmarks
+DISTFILES= # empty
-NO_EXTRACT= yes
-NO_WRKDIR= yes
+WRKSRC= ${WRKDIR}/src
-fetch:
- @${DO_NADA}
-
-pre-clean:
- @echo "===> Pre-clean for ${DISTNAME}"
- @(${RM} -f ${.CURDIR}/tcpblast)
- @(cd ${.CURDIR}/src; make clean)
+do-extract:
+ @${RM} -rf ${WRKDIR}
+ @${MKDIR} ${WRKDIR}
+ ${CP} -RP ${.CURDIR}/src ${WRKDIR}
.include <bsd.port.mk>