xref: /freebsd/gnu/lib/Makefile (revision 1e413cf93298b5b97441a21d9a50fdcd0ee9945e)
1# $FreeBSD$
2
3.include <bsd.own.mk>
4
5SUBDIR= csu libgcc libgcov libdialog libgomp libregex libreadline
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.if ${MK_SSP} != "no"
18SUBDIR+= libssp
19.endif
20
21.include <bsd.subdir.mk>
22