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