3f6014e672
non-threaded programs. This provides threaded programs with the needed exception frame symbols. parts submitted by: Max Khon <fjoe@iclub.nsu.ru> PR: 23252
24 lines
327 B
Makefile
24 lines
327 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= csu libdialog libgcc libgmp libmp libregex libreadline
|
|
|
|
.if ${OBJFORMAT} == aout
|
|
.if !defined(NOLIBC_R)
|
|
SUBDIR+= libgcc_r
|
|
.endif
|
|
.endif
|
|
|
|
.if !defined(NO_CXX)
|
|
SUBDIR+= libstdc++
|
|
.endif
|
|
|
|
.if !defined(NO_OBJC)
|
|
SUBDIR+= libobjc
|
|
.endif
|
|
|
|
.if !defined(NO_FORTRAN)
|
|
SUBDIR+= libg2c
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|