Makefile revision 265037
1# $FreeBSD: stable/10/gnu/lib/Makefile 265037 2014-04-28 04:20:14Z jmmv $
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.if ${MK_TESTS} != "no"
12SUBDIR+= tests
13.endif
14
15# libsupc++ uses libstdc++ headers, although 'make includes' should
16# have taken care of that already.
17.if ${MK_GNUCXX} != "no"
18SUBDIR+= libstdc++ libsupc++
19.endif
20
21.include <bsd.subdir.mk>
22