aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/auditreduce
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2006-02-02 10:15:30 +0000
committerRobert Watson <rwatson@FreeBSD.org>2006-02-02 10:15:30 +0000
commit8d87990e516906f52b0fb69025aa4a8b1a1b3b8d (patch)
treefeb9822e4c58201ecc45303d177871b944bde154 /usr.sbin/auditreduce
parent65eb7df05a012cae5995c5fc2a87cf118e0fa7ea (diff)
downloadsrc-8d87990e516906f52b0fb69025aa4a8b1a1b3b8d.tar.gz
src-8d87990e516906f52b0fb69025aa4a8b1a1b3b8d.zip
Enable building of OpenBSM command line tools:
- 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
Notes
Notes: svn path=/head/; revision=155213
Diffstat (limited to 'usr.sbin/auditreduce')
-rw-r--r--usr.sbin/auditreduce/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/usr.sbin/auditreduce/Makefile b/usr.sbin/auditreduce/Makefile
new file mode 100644
index 000000000000..ed4b748e142a
--- /dev/null
+++ b/usr.sbin/auditreduce/Makefile
@@ -0,0 +1,14 @@
+#
+# $FreeBSD$
+#
+
+OPENBSMDIR=${.CURDIR}/../../contrib/openbsm
+.PATH: ${OPENBSMDIR}/bin/auditreduce
+
+PROG= auditreduce
+MAN= auditreduce.1
+
+DPADD= ${LIBBSM}
+LDADD= -lbsm
+
+.include <bsd.prog.mk>