14 lines
311 B
Makefile
14 lines
311 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
.PATH: ${.CURDIR}/../../../cddl/dev/systrace
|
||
|
|
||
|
KMOD= systrace_freebsd32
|
||
|
SRCS= systrace.c
|
||
|
SRCS+= vnode_if.h
|
||
|
|
||
|
CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris \
|
||
|
-I${.CURDIR}/../../../cddl/contrib/opensolaris/uts/common \
|
||
|
-I${.CURDIR}/../../.. -DFREEBSD32_SYSTRACE
|
||
|
|
||
|
.include <bsd.kmod.mk>
|