From 3fdf6fa244dacc3457a4a9e0e97f27ef50422fe1 Mon Sep 17 00:00:00 2001 From: rwatson Date: Tue, 31 Jan 2006 19:40:12 +0000 Subject: Initial vendor import of the TrustedBSD OpenBSM distribution, version 1.0 alpha 1, an implementation of the documented Sun Basic Security Module (BSM) Audit API and file format, as well as local extensions to support the Mac OS X and FreeBSD operating systems. Also included are command line tools for audit trail reduction and conversion to text, as well as documentation of the commands, file format, and APIs. This distribution is the foundation for the TrustedBSD Audit implementation, and is a pre-release. This is the first in a series of commits to introduce support for Common Criteria CAPP security event audit support. This software has been made possible through the generous contributions of Apple Computer, Inc., SPARTA, Inc., as well as members of the TrustedBSD Project, including Wayne Salamon and Tom Rhodes . The original OpenBSM implementation was created by McAfee Research under contract to Apple Computer, Inc., as part of their CC CAPP security evaluation. Many thanks to: wsalamon, trhodes Obtained from: TrustedBSD Project --- contrib/openbsm/bsm/Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 contrib/openbsm/bsm/Makefile (limited to 'contrib/openbsm/bsm/Makefile') diff --git a/contrib/openbsm/bsm/Makefile b/contrib/openbsm/bsm/Makefile new file mode 100644 index 0000000..ba63701 --- /dev/null +++ b/contrib/openbsm/bsm/Makefile @@ -0,0 +1,22 @@ +# +# $P4: //depot/projects/trustedbsd/openbsm/bsm/Makefile#7 $ +# + +INCS= audit.h \ + audit_internal.h \ + audit_kevents.h \ + audit_record.h \ + audit_uevents.h \ + libbsm.h + +TARGET= ${DESTDIR}/usr/include/bsm + +all: +default: +depend: +clean: + +install: + mkdir -p -m 0755 ${TARGET} + install -o root -g wheel -m 0644 ${INCS} ${TARGET} + -- cgit v1.1