8d87990e51
- audit(8) - audit subsystem management tool - auditd(8) - audit trail and subsystem management daemon - auditreduce(1) - audit trail reduction tool - praudit(1) - audit trail printing tool Could probably use a NO_AUDIT make.conf flag. Obtained from: TrustedBSD Project
16 lines
204 B
Makefile
16 lines
204 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
OPENBSMDIR=${.CURDIR}/../../contrib/openbsm
|
|
.PATH: ${OPENBSMDIR}/bin/auditd
|
|
|
|
PROG= auditd
|
|
SRCS= auditd.c audit_warn.c
|
|
MAN= auditd.8
|
|
|
|
DPADD= ${LIBBSM}
|
|
LDADD= -lbsm
|
|
|
|
.include <bsd.prog.mk>
|