]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Use ${INSTALL}.
authorthorpej <thorpej@NetBSD.org>
Fri, 18 Oct 1996 02:48:24 +0000 (02:48 +0000)
committerthorpej <thorpej@NetBSD.org>
Fri, 18 Oct 1996 02:48:24 +0000 (02:48 +0000)
larn/Makefile
monop/Makefile
quiz/Makefile
robots/Makefile
wargames/Makefile
wump/Makefile

index 987d0159b5c19dcc775e3d096817c3460aaea407..3ad81a063e7bc66933475fe352f071c9ec0046ef 100644 (file)
@@ -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>
index 0b692e3d6c4d1942e2a33125302cd5d89cdc2f32..7edf5feb5bbeecf0b95a88356273c3c16e6c009a 100644 (file)
@@ -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>
index e280e6495ce3d385577f77ab2202d113a1cbdb78..05d0baf36278c4872c729e3d3cf0166600d1e546 100644 (file)
@@ -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>
index 25764c9395da29a7a1052b7b8139c42ec3c810a1..ec12c5d7e46c74427b30b1949f60201a116fb9ba 100644 (file)
@@ -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>
index 5e0199479155c9d34a907e4f8cb065cb2c2ea930..583367edc8bcc217b60f8389c274ade002e2c5c0 100644 (file)
@@ -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>
index 58c65e7c0ba42654d7283d4e3c03526bdc5b38c4..45dce1da87b7ba00ef4bdeec0f619ee6671882df 100644 (file)
@@ -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>