pkgsrc/benchmarks/whetstone/Makefile

32 lines
778 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.15 2006/01/21 18:57:40 jlam Exp $
DISTNAME= whetstone
PKGNAME= whetstone-1.2
CATEGORIES= benchmarks
MASTER_SITES= http://www.netlib.org/benchmark/
EXTRACT_SUFX= .c
MAINTAINER= root@garbled.net
COMMENT= Benchmark for processors that gives you a MIPS rating
2004-07-30 17:50:37 +02:00
PKG_INSTALLATION_TYPES= overwrite pkgviews
WRKSRC= ${WRKDIR}
2004-07-30 17:50:37 +02:00
INSTALLATION_DIRS= bin
do-build:
(cd ${WRKSRC} ; ${CC} ${CFLAGS} -o whetstone whetstone.c -lm)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/whetstone ${PREFIX}/bin
benchmark:
@${WRKSRC}/whetstone 80000 | tee ${WRKSRC}/whetstone.out
results:
@${MKDIR} /tmp/benches/`domainname`
2000-03-16 13:16:49 +01:00
-@${CP} ${WRKSRC}/whetstone.out /tmp/benches/`domainname`/whetstone.`uname`-`uname -m`-`uname -r`.`hostname`
.include "../../mk/bsd.pkg.mk"