xref: /freebsd/gnu/lib/Makefile (revision 1670a1c2a47d10ecccd001970b859caf93cd3b6e)
1# $FreeBSD$
2
3.include <bsd.own.mk>
4
5SUBDIR= csu libgcc libgcov libdialog libgomp libregex libreadline libssp
6
7# libsupc++ uses libstdc++ headers, although 'make includes' should
8# have taken care of that already.
9.if ${MK_CXX} != "no"
10SUBDIR+= libstdc++ libsupc++
11.endif
12
13.if ${MK_OBJC} != "no"
14SUBDIR+= libobjc
15.endif
16
17.include <bsd.subdir.mk>
18