diff options
author | garbled <garbled> | 1998-12-26 15:59:54 +0000 |
---|---|---|
committer | garbled <garbled> | 1998-12-26 15:59:54 +0000 |
commit | 3d278fabb74b86c558438b3dac31c26b5d74adc7 (patch) | |
tree | 6958f25a4817a66619dea1a60f9498023655b3f2 /benchmarks/hint | |
parent | 5332e165bbc28257447c2ad9651bb18aa05ea87d (diff) | |
download | pkgsrc-3d278fabb74b86c558438b3dac31c26b5d74adc7.tar.gz |
Fix all the benchmark targets so they work properly, and work with the
package uninstalled, with the exceptionof lmbench. Make non-batch
targets for all the benchmarks, and create a results target which
places all the results in /tmp for easier collection.
Diffstat (limited to 'benchmarks/hint')
-rw-r--r-- | benchmarks/hint/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/benchmarks/hint/Makefile b/benchmarks/hint/Makefile index 968a96ed77b..938d250dfad 100644 --- a/benchmarks/hint/Makefile +++ b/benchmarks/hint/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 1998/12/03 01:27:05 hubertf Exp $ +# $NetBSD: Makefile,v 1.4 1998/12/26 15:59:56 garbled Exp $ # # New ports collection makefile for: hint # Version required: 12 June 1998 (no version stamp) @@ -26,6 +26,10 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/hint.1 ${PREFIX}/man/man1 benchmark: - cd ${WRKSRC} ; mkdir -p data ; ./DOUBLE + cd ${WRKSRC} ; mkdir -p data ; ./DOUBLE | tee hint.out + +results: + -@${MKDIR} /tmp/benches/`domainname` + -@cp ${WRKSRC}/hint.out /tmp/benches/`domainname`/hint.`uname`-`uname -m`-`uname -r`.`hostname` .include "../../mk/bsd.pkg.mk" |