85ab8f98e6
that want to directly interface with sanitizer internals.
21 lines
406 B
Makefile
21 lines
406 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
|
SUBDIR+= include\
|
|
asan\
|
|
asan-preinit\
|
|
asan_cxx\
|
|
safestack\
|
|
ubsan_standalone\
|
|
ubsan_standalone_cxx
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \
|
|
(${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH} != "armeb")
|
|
SUBDIR+= profile
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|