mirror of
https://github.com/opnsense/src.git
synced 2026-02-17 01:31:45 -05:00
This is being done to simplify pathing for CFLAGS and source files. MFC after: 2 weeks Sponsored by: Dell EMC Isilon
17 lines
333 B
Makefile
17 lines
333 B
Makefile
# $FreeBSD$
|
|
|
|
SYSDIR?= ${SRCTOP}/sys
|
|
|
|
.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
|