c6063d0da8
from the latter.
22 lines
408 B
Makefile
22 lines
408 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= csu libgcc libgcov libdialog libgomp libregex libreadline
|
|
|
|
.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" && ${MK_CXX} != "no"
|
|
SUBDIR+= libstdc++ libsupc++
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|