9290d460ca
Turn on the required options in the ERL config file, and ensure that the fbt module is listed as a dependency for mips in the modules/dtrace/dtraceall/dtraceall.c file. PR: 220346 Reviewed by: gnn, markj MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D12227
37 lines
757 B
Makefile
37 lines
757 B
Makefile
# $FreeBSD$
|
|
|
|
.include "Makefile.inc"
|
|
|
|
SUBDIR= dtaudit \
|
|
dtmalloc \
|
|
dtnfscl \
|
|
dtrace \
|
|
dtraceall \
|
|
dtrace_test \
|
|
profile \
|
|
prototype \
|
|
sdt \
|
|
systrace
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
|
|
SUBDIR+= fasttrap fbt systrace_linux
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
SUBDIR+= systrace_linux32
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "powerpc"
|
|
SUBDIR+= fbt fasttrap
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "amd64" || \
|
|
${MACHINE_ARCH} == "mips64" || \
|
|
${MACHINE_ARCH} == "powerpc64"
|
|
SUBDIR+= systrace_freebsd32
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "aarch64" || \
|
|
${MACHINE_CPUARCH} == "arm" || \
|
|
${MACHINE_CPUARCH} == "mips" || \
|
|
${MACHINE_CPUARCH} == "riscv"
|
|
SUBDIR+= fbt
|
|
.endif
|
|
.include <bsd.subdir.mk>
|