freebsd-dev/usr.bin/login/Makefile
Wayne Salamon a1c73d21bf Make login audit-enabled, submitting audit records for the login and logout
events. The specifics of submitting the records is contained within
login_audit.c.
Document the auditing behavior in the man page.

Obtained from: TrustedBSD Project, Apple Computer, Inc.
Approved by: rwatson (mentor)
2006-02-04 20:20:02 +00:00

17 lines
313 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 7/19/93
# $FreeBSD$
PROG= login
SRCS= login.c login_audit.c login_fbtab.c
CFLAGS+=-DLOGALL
DPADD= ${LIBUTIL} ${LIBPAM}
LDADD= -lutil ${MINUSLPAM} -lbsm
MAN= login.1 login.access.5
.if !defined(NO_SETUID_LOGIN)
BINOWN= root
BINMODE=4555
PRECIOUSPROG=
.endif
.include <bsd.prog.mk>