]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/modules/dtrace/fasttrap/Makefile
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.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>