blob: 63f4c3148569472af2c7fb53e6b42f9b58921c0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# $NetBSD: Makefile,v 1.3 1998/12/03 01:27:05 hubertf Exp $
DISTNAME= lmbench-2alpha11
PKGNAME= lmbench-2.11a
CATEGORIES= benchmarks
MASTER_SITES= ftp://ftp.bitmover.com/lmbench/
EXTRACT_SUFX= .tgz
MAINTAINER= root@garbled.net
HOMEPAGE= http://www.bitmover.com/lm/lmbench/
ALL_TARGET= build
USE_GMAKE= yes
USE_PERL5= yes
post-configure:
@cd ${WRKSRC}; \
for f in scripts/os scripts/results scripts/config-run \
scripts/lmbench results/Makefile; do \
${MV} $$f $$f.in; \
${SED} -e 's|@PREFIX@|${PREFIX}|g' $$f.in > $$f; \
done
@chmod 0755 ${WRKSRC}/scripts/config-run
@chmod 0755 ${WRKSRC}/scripts/os
@chmod 0755 ${WRKSRC}/scripts/results
@chmod 0755 ${WRKSRC}/scripts/lmbench
do-install:
@${SETENV} PREFIX=${PREFIX} WRKSRC=${WRKSRC} ${SCRIPTDIR}/do-install
.include "../../mk/bsd.prefs.mk"
benchmark:
.if defined(BATCH)
@${ECHO} "*** This benchmark may only be run in non-batch mode" ; \
exit 1
.else
@if [ `id -u` != 0 ]; then echo "This benchmark must be run as root!" ; exit 1 ; fi
@cd ${WRKSRC}/src; ${GMAKE} results
.endif
.include "../../mk/bsd.pkg.mk"
|