xref: /freebsd/gnu/lib/Makefile (revision a10cee30c94cf5944826d2a495e9cdf339dfbcc8)
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