mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
non-threaded programs. This provides threaded programs with the needed exception frame symbols. parts submitted by: Max Khon <fjoe@iclub.nsu.ru> PR: 23252
23 lines
327 B
Makefile
23 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>
|