80a5635c8b
much of which is not necessary for PowerPC. The FBT module can likely be factored into 3 separate files: common, intel, and powerpc, rather than duplicating most of the code between the x86 and PowerPC flavors. All DTrace modules for PowerPC will be MFC'd together once Fasttrap is completed.
30 lines
485 B
Makefile
30 lines
485 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
.include "Makefile.inc"
|
|
|
|
SUBDIR= dtmalloc \
|
|
dtnfscl \
|
|
dtnfsclient \
|
|
dtrace \
|
|
dtraceall \
|
|
dtrace_test \
|
|
dtio \
|
|
lockstat \
|
|
profile \
|
|
prototype \
|
|
sdt \
|
|
systrace
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
|
|
SUBDIR+= fasttrap fbt systrace_linux32
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "powerpc"
|
|
SUBDIR+= fbt
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
SUBDIR+= systrace_freebsd32
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|