diff options
author | asami <asami@FreeBSD.org> | 1995-05-06 11:49:56 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-05-06 11:49:56 +0000 |
commit | 07745063c2a6f9b9bafd827346d4beff0697f814 (patch) | |
tree | fc2a93145bcadbd874bd3c90038ff95220053ae1 /benchmarks/lmbench | |
parent | fcbf4e0d7cce168d945ce6c12856829807ae9d15 (diff) | |
download | FreeBSD-ports-07745063c2a6f9b9bafd827346d4beff0697f814.zip FreeBSD-ports-07745063c2a6f9b9bafd827346d4beff0697f814.tar.gz |
A package to measure & compare system performance.
Yes, I know the package files are missing, I need to hack it a
little more so that it installs the binaries and all the data files
in some place that won't be blown away by a "make clean" and compare
the results...for now, you can type "make test" to run the test and
go into the work/lmbench-1.0/Results subdirectory to see what it
measured.
Diffstat (limited to 'benchmarks/lmbench')
-rw-r--r-- | benchmarks/lmbench/Makefile | 23 | ||||
-rw-r--r-- | benchmarks/lmbench/distinfo | 1 | ||||
-rw-r--r-- | benchmarks/lmbench/files/patch-aa | 11 |
3 files changed, 35 insertions, 0 deletions
diff --git a/benchmarks/lmbench/Makefile b/benchmarks/lmbench/Makefile new file mode 100644 index 0000000..652f65f --- /dev/null +++ b/benchmarks/lmbench/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: lmbench +# Version required: 1.0 +# Date created: 6 May 1995 +# Whom: asami +# +# $Id: Makefile,v 1.4 1995/04/15 03:46:04 asami Exp $ +# + +DISTNAME= lmbench-1.0 +CATEGORIES+= utilities +MASTER_SITES= ftp://forte.mathematik.uni-bremen.de/pub/unix/benchmarks/ + +MAINTAINER= asami@FreeBSD.ORG + +ALL_TARGET= build + +test: build + @(cd ${WRKSRC}; make results) + +retest: build + @(cd ${WRKSRC}; make rerun) + +.include <bsd.port.mk> diff --git a/benchmarks/lmbench/distinfo b/benchmarks/lmbench/distinfo new file mode 100644 index 0000000..206ed6f --- /dev/null +++ b/benchmarks/lmbench/distinfo @@ -0,0 +1 @@ +MD5 (lmbench-1.0.tar.gz) = 22651dd664376a13279f02af4eaacf84 diff --git a/benchmarks/lmbench/files/patch-aa b/benchmarks/lmbench/files/patch-aa new file mode 100644 index 0000000..0e77f4f --- /dev/null +++ b/benchmarks/lmbench/files/patch-aa @@ -0,0 +1,11 @@ +--- ./src/Makefile.org Fri Nov 25 08:53:00 1994 ++++ ./src/Makefile Sat May 6 03:38:01 1995 +@@ -91,7 +91,7 @@ + $(MAKE) O=$O CC=cc CFLAGS="$(CFLAGS) -Dvfork=fork" all + + bsd: +- $(MAKE) O=$O CC=$(CC) CFLAGS="$CFLAGS -Duint='unsigned int'" all ++ $(MAKE) O=$O CC=$(CC) CFLAGS="$(CFLAGS)" all + + Wall: + @$(MAKE) clean |