1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1994-01-30 01:03:16 +00:00
|
|
|
|
2014-05-06 04:22:01 +00:00
|
|
|
.include <src.opts.mk>
|
2006-03-17 18:54:44 +00:00
|
|
|
|
2016-10-19 20:56:21 +00:00
|
|
|
SUBDIR= csu
|
2016-10-03 17:34:50 +00:00
|
|
|
SUBDIR.${MK_DIALOG}+= libdialog
|
2016-10-19 19:32:06 +00:00
|
|
|
SUBDIR.${MK_GCC}+= libgcov libgomp
|
|
|
|
SUBDIR.${MK_SSP}+= libssp
|
|
|
|
SUBDIR.${MK_TESTS}+= tests
|
2017-04-20 19:29:35 +00:00
|
|
|
SUBDIR.${MK_GDB}+= libreadline
|
2015-05-18 16:05:41 +00:00
|
|
|
|
2017-04-20 19:33:00 +00:00
|
|
|
.if ${MK_GNU_GREP} != "no" || ${MK_GNU_GREP_COMPAT} != "no" || \
|
|
|
|
${MK_GDB} != "no"
|
2016-10-20 17:28:52 +00:00
|
|
|
SUBDIR+= libregex
|
|
|
|
.endif
|
|
|
|
|
2016-11-04 19:35:49 +00:00
|
|
|
.if ${MK_LLVM_LIBUNWIND} == "no"
|
|
|
|
SUBDIR+= libgcc
|
|
|
|
.endif
|
|
|
|
|
2002-05-29 00:45:51 +00:00
|
|
|
# libsupc++ uses libstdc++ headers, although 'make includes' should
|
|
|
|
# have taken care of that already.
|
2014-07-10 21:11:48 +00:00
|
|
|
.if ${MK_GNUCXX} != "no"
|
2002-05-29 00:45:51 +00:00
|
|
|
SUBDIR+= libstdc++ libsupc++
|
2015-10-15 22:55:08 +00:00
|
|
|
SUBDIR_DEPENDS_libsupc++:= libstdc++
|
2002-05-15 16:29:45 +00:00
|
|
|
.endif
|
1999-11-27 21:52:55 +00:00
|
|
|
|
2015-10-15 22:55:08 +00:00
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
|
1994-01-30 01:03:16 +00:00
|
|
|
.include <bsd.subdir.mk>
|