diff options
Diffstat (limited to 'lib/libauditd')
-rw-r--r-- | lib/libauditd/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/libauditd/Makefile b/lib/libauditd/Makefile new file mode 100644 index 0000000..2487383 --- /dev/null +++ b/lib/libauditd/Makefile @@ -0,0 +1,24 @@ +# +# $FreeBSD$ +# + +OPENBSMDIR= ${.CURDIR}/../../contrib/openbsm +LIBAUDITDDIR= ${OPENBSMDIR}/libauditd +LIBBSMDIR= ${OPENBSMDIR}/libbsm + +LIB= auditd + +.PATH: ${LIBAUDITDDIR} + +SRCS= auditd_lib.c + +# +# Must use BSM include files from within the contrib area, not the system. +# +CFLAGS+= -I${OPENBSMDIR} -I${LIBBSMDIR} + +WARNS?= 3 + +NO_MAN= + +.include <bsd.lib.mk> |