blob: 477f591fad2859fceacf14264987b8f6387f6b53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.26 2021/09/28 08:35:06 fcambus Exp $
.include <bsd.own.mk>
SUBDIR+=libclang_rt libcompiler_rt libexecinfo libiberty libreadline
SUBDIR+=libcxxabi libcxx
.if make(obj)
SUBDIR+=libstdc++ libstdc++-v3 libsupc++-v3
.else
. if ${BUILD_GCC3:L} == "yes"
SUBDIR+=libstdc++
. endif
. if ${BUILD_GCC4:L} == "yes"
# XXX make sure we build libstdc++-v3 from gcc4
SUBDIR+=libstdc++-v3 libsupc++-v3
. endif
.endif
.include <bsd.subdir.mk>
|