]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/modules/dtrace/fasttrap/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / modules / dtrace / fasttrap / Makefile
1 # $FreeBSD$
2
3 .PATH:  ${.CURDIR}/../../../cddl/contrib/opensolaris/uts/common/dtrace
4
5 KMOD=           fasttrap
6 SRCS=           fasttrap.c fasttrap_isa.c opt_compat.h
7 SRCS+=          vnode_if.h
8
9 CFLAGS+=        -I${.CURDIR}/../../../cddl/compat/opensolaris \
10                 -I${.CURDIR}/../../../cddl/contrib/opensolaris/uts/common \
11                 -I${.CURDIR}/../../..
12
13 .if ${MACHINE_CPUARCH} == "amd64" ||  ${MACHINE_CPUARCH} == "i386"
14 CFLAGS+=        -I${.CURDIR}/../../../cddl/contrib/opensolaris/uts/intel
15 .PATH:          ${.CURDIR}/../../../cddl/contrib/opensolaris/uts/intel/dtrace
16 .endif
17
18 CFLAGS+=        -DSMP -DDEBUG
19
20 .include <bsd.kmod.mk>