1# $FreeBSD$ 2 3.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" 4SUBDIR+= include 5SUBDIR+= asan 6SUBDIR+= asan-preinit 7SUBDIR+= asan_cxx 8SUBDIR+= asan_dynamic 9SUBDIR+= cfi 10SUBDIR+= cfi_diag 11SUBDIR+= safestack 12SUBDIR+= stats 13SUBDIR+= stats_client 14SUBDIR+= ubsan_minimal 15SUBDIR+= ubsan_standalone 16SUBDIR+= ubsan_standalone_cxx 17.endif # amd64 || i386 18 19.if ${MACHINE_CPUARCH} == "amd64" 20SUBDIR+= dd 21SUBDIR+= fuzzer 22SUBDIR+= fuzzer_no_main 23SUBDIR+= msan 24SUBDIR+= msan_cxx 25SUBDIR+= tsan 26SUBDIR+= tsan_cxx 27SUBDIR+= xray 28SUBDIR+= xray-basic 29SUBDIR+= xray-fdr 30SUBDIR+= xray-profiling 31.endif # amd64 32 33SUBDIR+= profile 34 35SUBDIR_PARALLEL= 36 37.include <bsd.subdir.mk> 38