xref: /freebsd/gnu/lib/Makefile (revision f0a75d274af375d15b97b830966b99a02b7db911)
1# $FreeBSD$
2
3.include <bsd.own.mk>
4
5SUBDIR= csu libgcc libgcov libdialog libregex libreadline
6
7# libsupc++ uses libstdc++ headers, although 'make includes' should
8# have taken care of that already.
9.if ${MK_CXX} != "no"
10SUBDIR+= libstdc++ libsupc++
11.endif
12
13.if ${MK_OBJC} != "no"
14SUBDIR+= libobjc
15.endif
16
17.if ${MK_FORTRAN} != "no"
18SUBDIR+= libg2c
19.endif
20
21.include <bsd.subdir.mk>
22