blob: d43d4fbed969d8eb08e0f997a95422dff5dd63f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.16 2011/11/21 01:36:18 jsg Exp $
.include <bsd.own.mk>
SUBDIR+=libiberty libreadline
.if make(obj)
SUBDIR+=libobjc libstdc++ ../egcs \
libstdc++-v3 libsupc++-v3 ../usr.bin/cc/libobjc
.else
. if ${COMPILER_VERSION:L} == "gcc3"
SUBDIR+=libobjc libstdc++
. elif ${COMPILER_VERSION:L} == "gcc4"
# XXX make sure we build libobjc & libstdc++-v3 from gcc4
SUBDIR+=../usr.bin/cc/libobjc
SUBDIR+=libstdc++-v3 libsupc++-v3
. elif ${COMPILER_VERSION:L} == "gcc2"
SUBDIR+=libobjc ../egcs
. endif
.endif
.include <bsd.subdir.mk>
|