mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
19 lines
367 B
Makefile
19 lines
367 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
SYSDIR?= ${.CURDIR}/../../..
|
||
|
|
|
||
|
|
.PATH: ${SYSDIR}/cddl/dev/systrace
|
||
|
|
|
||
|
|
KMOD= systrace_linux
|
||
|
|
|
||
|
|
SRCS= systrace.c
|
||
|
|
SRCS+= vnode_if.h
|
||
|
|
|
||
|
|
CFLAGS+= -I${SYSDIR}/cddl/compat/opensolaris \
|
||
|
|
-I${SYSDIR}/cddl/contrib/opensolaris/uts/common \
|
||
|
|
-I${SYSDIR} -DLINUX_SYSTRACE
|
||
|
|
|
||
|
|
.include <bsd.kmod.mk>
|
||
|
|
|
||
|
|
CFLAGS+= -include ${SYSDIR}/cddl/compat/opensolaris/sys/debug_compat.h
|