43e8403953
BSD crt is currently used on all architectures (other than sparc64). Remove the option and use BSD crt everywhere as part of the GCC 4.2.1 retirement plan. https://lists.freebsd.org/pipermail/freebsd-arch/2020-January/019823.html PR: 239851 Reviewed by: andrew, brooks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D23122
28 lines
562 B
Makefile
28 lines
562 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR=
|
|
SUBDIR.${MK_DIALOG}+= libdialog
|
|
SUBDIR.${MK_GCC}+= libgcov
|
|
.if ${MK_GCC} != "no" && ${MK_OPENMP} == "no"
|
|
SUBDIR+= libgomp
|
|
.endif
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.if ${MK_GNU_GREP} != "no" || ${MK_GNU_GREP_COMPAT} != "no" || \
|
|
${MK_GDB} != "no"
|
|
SUBDIR+= libregex
|
|
.endif
|
|
|
|
# libsupc++ uses libstdc++ headers, although 'make includes' should
|
|
# have taken care of that already.
|
|
.if ${MK_GNUCXX} != "no"
|
|
SUBDIR+= libstdc++ libsupc++
|
|
SUBDIR_DEPENDS_libsupc++:= libstdc++
|
|
.endif
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
.include <bsd.subdir.mk>
|