1 # $NetBSD: Makefile,v 1.20 2020/09/15 04:55:23 martin 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 SUBDIR+= .WAIT libasan liblsan libubsan 15 16 # TSan does not work with 32bit address space and has not been porter 17 # to all architectures 18 .if (!empty(MACHINE_ARCH:M*64*) || ${MACHINE_ARCH} == alpha) && \ 19 ${MACHINE_ARCH} != "sparc64" 20 SUBDIR+= libtsan 21 .endif 22 .endif 23 24 .include <bsd.subdir.mk> 25