summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1996-10-18 02:48:24 +0000
committerthorpej <thorpej@NetBSD.org>1996-10-18 02:48:24 +0000
commite47c09cdd67928e9609e0a298f2573406339e088 (patch)
tree2cf48738a8b1b68ba0df086c3c63902aa4391e64
parentd699982161fcf04c378aee3bd4f787d410ff6ff1 (diff)
downloadbsdgames-darwin-e47c09cdd67928e9609e0a298f2573406339e088.tar.gz
bsdgames-darwin-e47c09cdd67928e9609e0a298f2573406339e088.tar.zst
bsdgames-darwin-e47c09cdd67928e9609e0a298f2573406339e088.zip
Use ${INSTALL}.
-rw-r--r--larn/Makefile7
-rw-r--r--monop/Makefile4
-rw-r--r--quiz/Makefile6
-rw-r--r--robots/Makefile4
-rw-r--r--wargames/Makefile4
-rw-r--r--wump/Makefile4
6 files changed, 14 insertions, 15 deletions
diff --git a/larn/Makefile b/larn/Makefile
index 987d0159..3ad81a06 100644
--- a/larn/Makefile
+++ b/larn/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 1995/04/22 07:34:00 cgd Exp $
+# $NetBSD: Makefile,v 1.9 1996/10/18 02:48:24 thorpej Exp $
# @(#)Makefile 5.12 (Berkeley) 5/30/93
# EXTRA
@@ -63,8 +63,7 @@ LDADD= -ltermcap -lcompat
HIDEGAME=hidegame
beforeinstall:
- (cd ${.CURDIR}/datfiles; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
- larnmaze larnopts larn.help \
- ${DESTDIR}/usr/share/games/larn)
+ (cd ${.CURDIR}/datfiles; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} \
+ -m 444 larnmaze larnopts larn.help ${DESTDIR}/usr/share/games/larn)
.include <bsd.prog.mk>
diff --git a/monop/Makefile b/monop/Makefile
index 0b692e3d..7edf5feb 100644
--- a/monop/Makefile
+++ b/monop/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 1995/03/23 08:34:32 cgd Exp $
+# $NetBSD: Makefile,v 1.13 1996/10/18 02:48:56 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
PROG= monop
@@ -19,7 +19,7 @@ initdeck: initdeck.c
${CC} ${CFLAGS} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${.CURDIR}/initdeck.c ${LDADD}
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 cards.pck \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 cards.pck \
${DESTDIR}/usr/share/games
.include <bsd.prog.mk>
diff --git a/quiz/Makefile b/quiz/Makefile
index e280e649..05d0baf3 100644
--- a/quiz/Makefile
+++ b/quiz/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 1995/05/11 22:00:50 cgd Exp $
+# $NetBSD: Makefile,v 1.10 1996/10/18 02:49:35 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
PROG= quiz
@@ -11,7 +11,7 @@ CATS= africa america areas arith asia babies bard chinese collectives \
HIDEGAME=hidegame
beforeinstall:
- (cd ${.CURDIR}/datfiles; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
- ${CATS} ${DESTDIR}/usr/share/games/quiz.db)
+ (cd ${.CURDIR}/datfiles; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} \
+ -m 444 ${CATS} ${DESTDIR}/usr/share/games/quiz.db)
.include <bsd.prog.mk>
diff --git a/robots/Makefile b/robots/Makefile
index 25764c93..ec12c5d7 100644
--- a/robots/Makefile
+++ b/robots/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 1995/04/22 10:08:46 cgd Exp $
+# $NetBSD: Makefile,v 1.6 1996/10/18 02:50:15 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
PROG= robots
@@ -11,7 +11,7 @@ LDADD= -lcurses -ltermlib
HIDEGAME=hidegame
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
${DESTDIR}/var/games/robots_roll
.include <bsd.prog.mk>
diff --git a/wargames/Makefile b/wargames/Makefile
index 5e019947..583367ed 100644
--- a/wargames/Makefile
+++ b/wargames/Makefile
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.4 1995/04/22 07:53:41 cgd Exp $
+# $NetBSD: Makefile,v 1.5 1996/10/18 02:50:57 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
NOOBJ= noobj
all wargames clean cleandir depend lint tags:
install:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/wargames.sh ${DESTDIR}/usr/games/wargames
.include <bsd.prog.mk>
diff --git a/wump/Makefile b/wump/Makefile
index 58c65e7c..45dce1da 100644
--- a/wump/Makefile
+++ b/wump/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 1995/04/22 08:19:45 cgd Exp $
+# $NetBSD: Makefile,v 1.5 1996/10/18 02:51:24 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
PROG= wump
@@ -6,7 +6,7 @@ MAN= wump.6
HIDEGAME=hidegame
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/wump.info \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/wump.info \
${DESTDIR}/usr/share/games
.include <bsd.prog.mk>