diff options
author | wosch <wosch@FreeBSD.org> | 1996-01-23 23:59:36 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-01-23 23:59:36 +0000 |
commit | 625f6e5911104defff5ea81fc38d8af45a58e891 (patch) | |
tree | f974609dad1c89cab43baf8c7a59022580a865bb /usr.sbin/manctl/Makefile | |
parent | e7f0ee99408bb327cddc950af2ab5e231de52382 (diff) | |
download | FreeBSD-src-625f6e5911104defff5ea81fc38d8af45a58e891.zip FreeBSD-src-625f6e5911104defff5ea81fc38d8af45a58e891.tar.gz |
add a manpage
check for argument 'path'
Diffstat (limited to 'usr.sbin/manctl/Makefile')
-rw-r--r-- | usr.sbin/manctl/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/usr.sbin/manctl/Makefile b/usr.sbin/manctl/Makefile index 19b8baf..1ba12ac 100644 --- a/usr.sbin/manctl/Makefile +++ b/usr.sbin/manctl/Makefile @@ -1,11 +1,10 @@ # Makefile -# $Id: Makefile,v 1.5 1995/07/17 14:39:09 jkh Exp $ +# $Id: Makefile,v 1.6 1995/07/25 00:37:23 bde Exp $ -all: - @echo -n +MAN8= manctl.8 -install: all - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/manctl.sh \ - ${DESTDIR}${BINDIR}/manctl +beforeinstall: + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/manctl.sh ${DESTDIR}${BINDIR}/manctl .include <bsd.prog.mk> |