1994-09-29 13:06:54 +00:00
|
|
|
# From: @(#)Makefile 8.3 (Berkeley) 4/2/94
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2014-05-06 04:22:01 +00:00
|
|
|
.include <src.opts.mk>
|
2006-03-17 18:54:44 +00:00
|
|
|
|
2002-04-15 03:02:57 +00:00
|
|
|
PROG = passwd
|
|
|
|
BINOWN = root
|
|
|
|
BINMODE = 4555
|
2016-01-28 02:56:30 +00:00
|
|
|
PRECIOUSPROG=
|
2014-11-25 14:29:10 +00:00
|
|
|
LIBADD = pam
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_NIS} != "no"
|
2017-03-07 05:10:38 +00:00
|
|
|
SYMLINKS = passwd ${BINDIR}/yppasswd
|
2002-04-15 03:02:57 +00:00
|
|
|
MLINKS = passwd.1 yppasswd.1
|
2004-12-29 08:16:39 +00:00
|
|
|
.endif
|
1995-02-11 18:20:06 +00:00
|
|
|
|
1995-08-13 16:07:36 +00:00
|
|
|
beforeinstall:
|
1997-02-26 05:31:52 +00:00
|
|
|
.for i in passwd yppasswd
|
|
|
|
[ ! -e ${DESTDIR}${BINDIR}/$i ] || \
|
1999-02-14 13:56:15 +00:00
|
|
|
chflags noschg ${DESTDIR}${BINDIR}/$i || true
|
1997-02-26 05:31:52 +00:00
|
|
|
.endfor
|
1995-08-17 11:26:42 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
.include <bsd.prog.mk>
|