blob: 953c06eeb1e4ab46a46f9e7134bbf4fe97bf5b86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.10 2010/05/10 18:20:31 drahn Exp $
.include <bsd.own.mk>
# Note that this Makefile is only used for make obj and GCC2 architectures.
SUBDIR+= libio libf2c libstdc++
# just so that the main directory will have a subdir, which simplifies
# libf2c build
obj: _SUBDIRUSE
cd $(.CURDIR) && $(MAKE) -f Makefile.bsd-wrapper1 obj
cd $(.CURDIR)/gcc && $(MAKE) -f Makefile.bsd-wrapper obj
.include <bsd.subdir.mk>
|