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