Makefile revision 291792
1# $FreeBSD: stable/10/gnu/lib/Makefile 291792 2015-12-04 18:14:31Z bdrewery $
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++
19SUBDIR_DEPENDS_libsupc++:= libstdc++
20.endif
21
22SUBDIR_PARALLEL=
23
24.include <bsd.subdir.mk>
25