Additional patches to this file are in progress, and having each SUBDIR entry on a separate line makes it easier to change the order in which the patches are reviewed, tested, and applied.
28 lines
531 B
Makefile
28 lines
531 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= csu
|
|
SUBDIR+= libgcc
|
|
SUBDIR+= libregex
|
|
|
|
SUBDIR.${MK_DIALOG}+= libdialog
|
|
SUBDIR.${MK_GCC}+= libgcov libgomp
|
|
SUBDIR.${MK_SSP}+= libssp
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.if ${MK_BINUTILS} != "no" && ${MK_GDB} != "no"
|
|
SUBDIR+= libreadline
|
|
.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>
|