blob: 3a5d6e08dce61d477253f19a69ebf09cd0c33cc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.8 2005/04/28 21:30:13 espie Exp $
.include <bsd.own.mk>
USE_GCC3?=No
.if make(obj)
SUBDIR+= libio libf2c libobjc libstdc++
.else
. if ${USE_GCC3:L} == "no"
SUBDIR+= libio libf2c libstdc++
. else
SUBDIR+=
. endif
.endif
# just so that the main directory will have a subdir, which simplifies
# libf2c/libobjc build
obj: _SUBDIRUSE
cd $(.CURDIR) && $(MAKE) -f Makefile.bsd-wrapper1 obj
cd $(.CURDIR)/gcc && $(MAKE) -f Makefile.bsd-wrapper obj
.include <bsd.subdir.mk>
|