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