2015-01-08 22:40:56 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2015-01-13 19:54:47 +00:00
|
|
|
.include <src.opts.mk>
|
|
|
|
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
2016-09-03 21:41:29 +00:00
|
|
|
SUBDIR+= include
|
|
|
|
SUBDIR+= asan
|
|
|
|
SUBDIR+= asan-preinit
|
|
|
|
SUBDIR+= asan_dynamic
|
|
|
|
SUBDIR+= asan_cxx
|
|
|
|
SUBDIR+= safestack
|
|
|
|
SUBDIR+= stats
|
|
|
|
SUBDIR+= stats_client
|
|
|
|
SUBDIR+= ubsan_standalone
|
|
|
|
SUBDIR+= ubsan_standalone_cxx
|
2015-01-13 19:54:47 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \
|
|
|
|
(${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH} != "armeb")
|
2016-09-03 21:41:29 +00:00
|
|
|
SUBDIR+= profile
|
2015-01-13 19:54:47 +00:00
|
|
|
.endif
|
2015-01-08 22:40:56 +00:00
|
|
|
|
|
|
|
.include <bsd.subdir.mk>
|