1 # $NetBSD: Makefile,v 1.13 2025/09/07 04:11:47 mrg Exp $ 2 3 .include <bsd.own.mk> 4 5 # crtstuff is built out of elsewhere, or not at all 6 SUBDIR+= libgcc .WAIT 7 SUBDIR+= libiberty libobjc libgomp 8 SUBDIR+= libbacktrace 9 SUBDIR+= liblto_plugin 10 11 .if (${MKLIBSTDCXX} != "no") && (${MKCXX} != "no") 12 SUBDIR+= libsupc++ libstdc++-v3 13 14 .if ${MKGCCCMDS} != "no" 15 SUBDIR+= .WAIT libasan liblsan libubsan 16 17 # TSan does not work with 32bit address space and has not been ported 18 # to all 64-bit architectures. 19 .if ${MACHINE} == "amd64" || ${MACHINE_CPU} == "aarch64" 20 SUBDIR+= libtsan 21 .endif 22 .endif 23 24 .endif 25 26 .include <bsd.subdir.mk> 27