d485dbc7d8
Clang uses compiler-rt for the code coverage runtime, and ports GCC provides its own libgcov. PR: 200203 (exp-run) Sponsored by: The FreeBSD Foundation
26 lines
426 B
Makefile
26 lines
426 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= csu libgcc libdialog libregex libreadline
|
|
|
|
.if ${MK_GCC} != "no"
|
|
SUBDIR+= libgcov libgomp
|
|
.endif
|
|
|
|
.if ${MK_SSP} != "no"
|
|
SUBDIR+= libssp
|
|
.endif
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
# libsupc++ uses libstdc++ headers, although 'make includes' should
|
|
# have taken care of that already.
|
|
.if ${MK_GNUCXX} != "no"
|
|
SUBDIR+= libstdc++ libsupc++
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|