0c59c145ed
conditionally build in audit support. Submitted by: bz MFC after: 1 week
26 lines
402 B
Makefile
26 lines
402 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= login
|
|
SRCS= login.c login_fbtab.c
|
|
CFLAGS+=-DLOGALL
|
|
DPADD= ${LIBUTIL} ${LIBPAM}
|
|
LDADD= -lutil ${MINUSLPAM}
|
|
|
|
.if ${MK_AUDIT} != "no"
|
|
SRCS+= login_audit.c
|
|
CFLAGS+= -DUSE_BSM_AUDIT
|
|
DPADD+= ${LIBBSM}
|
|
LDADD+= -lbsm
|
|
.endif
|
|
|
|
.if ${MK_SETUID_LOGIN} != "no"
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
PRECIOUSPROG=
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|