1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5SUBDIR= csu 6SUBDIR+= libgcc 7SUBDIR+= libregex 8 9SUBDIR.${MK_DIALOG}+= libdialog 10SUBDIR.${MK_GCC}+= libgcov libgomp 11SUBDIR.${MK_SSP}+= libssp 12SUBDIR.${MK_TESTS}+= tests 13 14.if ${MK_BINUTILS} != "no" && ${MK_GDB} != "no" 15SUBDIR+= libreadline 16.endif 17 18# libsupc++ uses libstdc++ headers, although 'make includes' should 19# have taken care of that already. 20.if ${MK_GNUCXX} != "no" 21SUBDIR+= libstdc++ libsupc++ 22SUBDIR_DEPENDS_libsupc++:= libstdc++ 23.endif 24 25SUBDIR_PARALLEL= 26 27.include <bsd.subdir.mk> 28