summaryrefslogtreecommitdiff
path: root/benchmarks/bytebench/Makefile
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>1996-01-02 23:08:59 +0000
committerStefan Eßer <se@FreeBSD.org>1996-01-02 23:08:59 +0000
commit2d1df8b704869fdaccff1dbb82efec8879b1ef0d (patch)
treea3ddd4cd68982a6a997c08a389b5eecda707af1a /benchmarks/bytebench/Makefile
parent*** empty log message *** (diff)
Add "do-install" target.
Notes
Notes: svn path=/head/; revision=2597
Diffstat (limited to 'benchmarks/bytebench/Makefile')
-rw-r--r--benchmarks/bytebench/Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/benchmarks/bytebench/Makefile b/benchmarks/bytebench/Makefile
index 9b31eb73e85d..8f198db74601 100644
--- a/benchmarks/bytebench/Makefile
+++ b/benchmarks/bytebench/Makefile
@@ -1,9 +1,9 @@
-# New ports collection makefile for: byte
+# New ports collection makefile for: bytebench
# Version required:
# Date created: 28 December 1995
# Whom: se
#
-# $Id: Makefile,v 1.3 1995/11/22 11:36:48 asami Exp $
+# $Id: Makefile,v 1.1.1.1 1996/01/01 22:57:36 se Exp $
#
DISTNAME= bytebench-3.1
@@ -13,6 +13,12 @@ MASTER_SITES= ftp://ftp.inria.fr/system/benchmark/
MAINTAINER= se@FreeBSD.org
-CFLAGS+= -static
+do-install:
+ -mkdir -p $(PREFIX)/lib/bytebench
+ for f in Makefile README Run doc pgms results testdir; \
+ do cp -R $(WRKSRC)/$$f $(PREFIX)/lib/bytebench; done
+ echo "!#/bin/sh" > $(PREFIX)/bin/bytebench
+ echo "$(PREFIX)/lib/bytebench/Run" >> $(PREFIX)/bin/bytebench
+ chmod 755 $(PREFIX)/bin/bytebench
.include <bsd.port.mk>