freebsd-dev/gnu/lib/Makefile
Ruslan Ermilov 83f56d9ae4 Make sure to not yet build the GNU C++, but still allow
for the C++ progs to be built with e.g. an old compiler,
CXX=/usr/bin/c++, for the time being.
2002-05-15 16:29:45 +00:00

26 lines
342 B
Makefile

# $FreeBSD$
SUBDIR= csu libgcc libdialog libregex libreadline
.if ${OBJFORMAT} == aout
.if !defined(NOLIBC_R)
SUBDIR+= libgcc_r
.endif
.endif
.if notyet
.if !defined(NO_CXX)
SUBDIR+= libsupc++ libstdc++
.endif
.endif
.if !defined(NO_OBJC)
SUBDIR+= libobjc
.endif
.if !defined(NO_FORTRAN)
SUBDIR+= libg2c
.endif
.include <bsd.subdir.mk>