Deleted Added
full compact
Makefile (169718) Makefile (180012)
1# $FreeBSD: head/gnu/lib/Makefile 169718 2007-05-19 04:25:59Z kan $
1# $FreeBSD: head/gnu/lib/Makefile 180012 2008-06-25 21:33:28Z ru $
2
3.include <bsd.own.mk>
4
2
3.include <bsd.own.mk>
4
5SUBDIR= csu libgcc libgcov libdialog libgomp libregex libreadline
5SUBDIR= csu libgcc libgcov libdialog libgomp libregex libreadline libssp
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
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_SSP} != "no"
18SUBDIR+= libssp
19.endif
20
21.include <bsd.subdir.mk>
17.include <bsd.subdir.mk>