mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
18 lines
339 B
Makefile
18 lines
339 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
SYSDIR?= ${.CURDIR}/../../..
|
||
|
|
|
||
|
|
.PATH: ${SYSDIR}/security/audit
|
||
|
|
|
||
|
|
KMOD= dtaudit
|
||
|
|
SRCS= audit_dtrace.c \
|
||
|
|
vnode_if.h
|
||
|
|
|
||
|
|
CFLAGS+= -I${SYSDIR}/cddl/compat/opensolaris \
|
||
|
|
-I${SYSDIR}/cddl/contrib/opensolaris/uts/common \
|
||
|
|
-I${SYSDIR}
|
||
|
|
|
||
|
|
.include <bsd.kmod.mk>
|
||
|
|
|
||
|
|
CFLAGS+= -include ${SYSDIR}/cddl/compat/opensolaris/sys/debug_compat.h
|