]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - gnu/lib/Makefile
Document three open issues affecting 11.3-RELEASE.
[FreeBSD/FreeBSD.git] / gnu / lib / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 SUBDIR=                 csu
6 SUBDIR+=                libdialog
7 SUBDIR+=                libgcc
8
9 .if ${MK_GCC} != "no" && ${MK_OPENMP} == "no"
10 SUBDIR+= libgcov libgomp
11 .endif
12
13 .if ${MK_SSP} != "no"
14 SUBDIR+= libssp
15 .endif
16
17 .if ${MK_TESTS} != "no"
18 SUBDIR+= tests
19 .endif
20
21 .if ${MK_BINUTILS} != "no" && ${MK_GDB} != "no"
22 SUBDIR+=        libreadline
23 .endif
24
25 .if ${MK_GNU_DIFF} != "no" || ${MK_GNU_GREP} != "no" || \
26     ${MK_GNU_GREP_COMPAT} != "no" || ${MK_GDB} != "no"
27 SUBDIR+=                libregex
28 .endif
29
30 # libsupc++ uses libstdc++ headers, although 'make includes' should
31 # have taken care of that already.
32 .if ${MK_GNUCXX} != "no"
33 SUBDIR+= libstdc++ libsupc++
34 SUBDIR_DEPENDS_libsupc++:= libstdc++
35 .endif
36
37 SUBDIR_PARALLEL=
38
39 .include <bsd.subdir.mk>