xref: /freebsd/sys/modules/dtrace/fasttrap/Makefile (revision 39beb93c)
1# $FreeBSD$
2
3.PATH: ${.CURDIR}/../../../cddl/dev/fasttrap
4
5KMOD=		fasttrap
6SRCS=		fasttrap.c
7SRCS+=		vnode_if.h
8
9CFLAGS+=	-I${.CURDIR}/../../../cddl/compat/opensolaris \
10		-I${.CURDIR}/../../../cddl/contrib/opensolaris/uts/common \
11		-I${.CURDIR}/../../..
12
13.if ${MACHINE_ARCH} == "amd64" ||  ${MACHINE_ARCH} == "i386"
14CFLAGS+=	-I${.CURDIR}/../../../cddl/contrib/opensolaris/uts/intel
15.endif
16
17CFLAGS+=	-DSMP -DDEBUG
18
19.include <bsd.kmod.mk>
20