diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-05-14 06:19:50 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-05-14 06:19:50 +0000 |
commit | f61d5cfb5b09610954e33c75b70d4a2070e4e1e5 (patch) | |
tree | 2c3535fb1494bdbbd644b35e66d0d340a0835f58 /benchmarks/lmbench | |
parent | c30ab1ec95eae77850b27a61af7f8b290d19765f (diff) | |
download | ports-f61d5cfb5b09610954e33c75b70d4a2070e4e1e5.tar.gz ports-f61d5cfb5b09610954e33c75b70d4a2070e4e1e5.zip |
Notes
Diffstat (limited to 'benchmarks/lmbench')
-rw-r--r-- | benchmarks/lmbench/files/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/benchmarks/lmbench/files/Makefile b/benchmarks/lmbench/files/Makefile new file mode 100644 index 000000000000..cb0a1523e2a1 --- /dev/null +++ b/benchmarks/lmbench/files/Makefile @@ -0,0 +1,15 @@ +# A Makefile for the installed lmbench +BINDIR = ./bin/bsd + +results: + @(cd scripts; ./config-run ${BINDIR}/CONFIG) + @(cd scripts; ./results) + +rerun: + @(if [ ! -f bin/bsd/CONFIG ]; then \ + (cd scripts; ./config-run ${BINDIR}/CONFIG); \ + fi) + @(cd scripts; ./results) + +see: + cd Results && make summary percent | more |