pkgsrc/benchmarks/postmark/Makefile
agc a16fc84f19 Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:
WRKSRC= ${WRKDIR}

This is much cleaner, much more indicative of what happens, and removes
another of the negative definitions (NO_.* = value).
2001-09-09 20:36:07 +00:00

36 lines
976 B
Makefile

# $NetBSD: Makefile,v 1.6 2001/09/09 20:36:15 agc Exp $
# FreeBSD ID: ports/benchmarks/postmark/Makefile,v 1.2 1999/09/19 05:13:20 obrien Exp
#
DISTNAME= postmark-1_5.c
PKGNAME= postmark-1.5
CATEGORIES= benchmarks
MASTER_SITES= http://www.netapp.com/ftp/
EXTRACT_SUFX= #
MAINTAINER= root@garbled.net
HOMEPAGE= http://www.netapp.com/tech_library/3022.html
COMMENT= NetApps file system benchmark
EXTRACT_CMD= ${CP} ${DOWNLOADED_DISTFILE} postmark.c
NO_PATCH= yes
NO_CONFIGURE= yes
WRKSRC= ${WRKDIR}
do-build:
(cd ${WRKSRC} && ${CC} ${CFLAGS} -o postmark postmark.c)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/postmark ${PREFIX}/sbin
benchmark:
@(cd ${WRKSRC}; (${ECHO} "set number 5000" ;\
${ECHO} "set size 100 50000" ;\
${ECHO} "run") | ./postmark | tee postmark.out)
results:
@${MKDIR} /tmp/benches/`domainname`
-@${CP} ${WRKSRC}/postmark.out /tmp/benches/`domainname`/postmark.`uname`-`uname -m`-`uname -r`.`hostname`
.include "../../mk/bsd.pkg.mk"