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