xref: /freebsd-14.2/gnu/lib/Makefile (revision 016e7731)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5SUBDIR= csu libgcc libregex
6
7SUBDIR.${MK_DIALOG}+=	libdialog
8SUBDIR.${MK_GCC}+=	libgcov libgomp
9SUBDIR.${MK_SSP}+=	libssp
10SUBDIR.${MK_TESTS}+=	tests
11
12.if ${MK_BINUTILS} != "no" && ${MK_GDB} != "no"
13SUBDIR+=	libreadline
14.endif
15
16# libsupc++ uses libstdc++ headers, although 'make includes' should
17# have taken care of that already.
18.if ${MK_GNUCXX} != "no"
19SUBDIR+= libstdc++ libsupc++
20SUBDIR_DEPENDS_libsupc++:= libstdc++
21.endif
22
23SUBDIR_PARALLEL=
24
25.include <bsd.subdir.mk>
26