a8b8edb25e
instead of sprinkling them out over many disjoint files. This is a follow-up to achieve the same goal in an incomplete rev.348521. Approved by: imp MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D20520
36 lines
684 B
Makefile
36 lines
684 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
.include <src.tools.mk>
|
|
|
|
CONFS= fbtab login.conf motd.template login.access
|
|
PROG= login
|
|
SRCS= login.c login_fbtab.c
|
|
CFLAGS+=-DLOGALL
|
|
LIBADD= util pam
|
|
|
|
WARNS?= 5
|
|
|
|
.if ${MK_AUDIT} != "no"
|
|
SRCS+= login_audit.c
|
|
CFLAGS+= -DUSE_BSM_AUDIT
|
|
LIBADD+= bsm
|
|
.endif
|
|
|
|
.if ${MK_SETUID_LOGIN} != "no"
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
PRECIOUSPROG=
|
|
.endif
|
|
|
|
.include <bsd.endian.mk>
|
|
afterinstallconfig:
|
|
${CAP_MKDB_CMD} ${CAP_MKDB_ENDIAN} ${DESTDIR}/etc/login.conf
|
|
.if defined(NO_ROOT) && defined(METALOG)
|
|
echo "./etc/login.conf.db type=file mode=0644 uname=root gname=wheel" | \
|
|
cat -l >> ${METALOG}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|