diff options
author | ru <ru@FreeBSD.org> | 2001-04-07 11:21:35 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-04-07 11:21:35 +0000 |
commit | ef2dbc1fb0d429e26f0e990ddbb21ce322ef8d27 (patch) | |
tree | 056ad459e7adb0894bcede2c9ae571d853f222f1 /games | |
parent | 06174de8ff77027561ef0e58b4ba7aa59799f6c0 (diff) | |
download | FreeBSD-src-ef2dbc1fb0d429e26f0e990ddbb21ce322ef8d27.zip FreeBSD-src-ef2dbc1fb0d429e26f0e990ddbb21ce322ef8d27.tar.gz |
beforeinstall -> SCRIPTS.
Diffstat (limited to 'games')
-rw-r--r-- | games/caesar/Makefile | 5 | ||||
-rw-r--r-- | games/wargames/Makefile | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/games/caesar/Makefile b/games/caesar/Makefile index 48a8430..e63f323 100644 --- a/games/caesar/Makefile +++ b/games/caesar/Makefile @@ -4,13 +4,10 @@ PROG= caesar DPADD= ${LIBM} LDADD= -lm +SCRIPTS=rot13.sh MAN= caesar.6 MLINKS= caesar.6 rot13.6 CFLAGS+= -Wall -beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${.CURDIR}/rot13.sh ${DESTDIR}${BINDIR}/rot13 - .include <bsd.prog.mk> diff --git a/games/wargames/Makefile b/games/wargames/Makefile index 841f9d2..4f2a9df 100644 --- a/games/wargames/Makefile +++ b/games/wargames/Makefile @@ -1,10 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +SCRIPTS=wargames.sh MAN= wargames.6 -beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${.CURDIR}/wargames.sh ${DESTDIR}${BINDIR}/wargames - .include <bsd.prog.mk> |