diff options
author | garbled <garbled> | 1998-12-26 15:59:54 +0000 |
---|---|---|
committer | garbled <garbled> | 1998-12-26 15:59:54 +0000 |
commit | 069601cc6968f844d963e20f6639ba6fd74b640c (patch) | |
tree | 6958f25a4817a66619dea1a60f9498023655b3f2 /benchmarks/flops/Makefile | |
parent | 12f648cc39d932c1a94b5579dcb006fea47ac42f (diff) | |
download | pkgsrc-069601cc6968f844d963e20f6639ba6fd74b640c.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/flops/Makefile')
-rw-r--r-- | benchmarks/flops/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/benchmarks/flops/Makefile b/benchmarks/flops/Makefile index 94bbee02669..d22e567a456 100644 --- a/benchmarks/flops/Makefile +++ b/benchmarks/flops/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 1998/10/22 05:26:33 garbled Exp $ +# $NetBSD: Makefile,v 1.2 1998/12/26 15:59:55 garbled Exp $ DISTNAME= flops PKGNAME= flops-2.0 @@ -25,6 +25,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/flops.doc ${PREFIX}/share/doc/flops benchmark: - -@${WRKSRC}/flops + -@${WRKSRC}/flops | tee ${WRKSRC}/flops.out + +results: + -@${MKDIR} /tmp/benches/`domainname` + -@cp ${WRKSRC}/flops.out /tmp/benches/`domainname`/flops.`uname`-`uname -m`-`uname -r`.`hostname` .include "../../mk/bsd.pkg.mk" |