1# $FreeBSD$ 2 3SUBDIR= csu libgcc libdialog libregex libreadline 4 5.if ${OBJFORMAT} == aout 6.if !defined(NOLIBC_R) 7SUBDIR+= libgcc_r 8.endif 9.endif 10 11# libsupc++ uses libstdc++ headers, although 'make includes' should 12# have taken care of that already. 13.if !defined(NO_CXX) 14SUBDIR+= libstdc++ libsupc++ 15.endif 16 17.if !defined(NO_OBJC) 18SUBDIR+= libobjc 19.endif 20 21.if !defined(NO_FORTRAN) 22SUBDIR+= libg2c 23.endif 24 25.include <bsd.subdir.mk> 26