1# $FreeBSD$ 2 3.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" 4SUBDIR+= include 5SUBDIR+= asan 6SUBDIR+= asan-preinit 7SUBDIR+= asan_cxx 8SUBDIR+= asan_dynamic 9.if ${MACHINE_CPUARCH} == "amd64" 10SUBDIR+= msan 11SUBDIR+= msan_cxx 12.endif 13SUBDIR+= safestack 14SUBDIR+= stats 15SUBDIR+= stats_client 16.if ${MACHINE_CPUARCH} == "amd64" 17SUBDIR+= tsan 18SUBDIR+= tsan_cxx 19.endif 20SUBDIR+= ubsan_minimal 21SUBDIR+= ubsan_standalone 22SUBDIR+= ubsan_standalone_cxx 23.endif 24 25SUBDIR+= profile 26 27.include <bsd.subdir.mk> 28