blob: 6cbfffa36441fa2f3c5eace2f39e03ab7b3c4990 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $OpenBSD: Makefile,v 1.47 2010/10/18 17:11:27 deraadt Exp $
# $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $
.include <bsd.own.mk>
.if make(obj)
SUBDIR+= cc gcc ../egcs/gcc
.else
. if ${COMPILER_VERSION:L} == "gcc3"
SUBDIR+= gcc
. elif ${COMPILER_VERSION:L} == "gcc4"
SUBDIR+= cc
. else
SUBDIR+= ../egcs/gcc
. endif
.endif
SUBDIR+= cxxfilt cvs lynx binutils
# most ports use binutils gas and ld, some do not (yet).
.if ${ELF_TOOLCHAIN:L} == "no"
SUBDIR+= gas ld
.endif
# Do these last; texinfo builds the info 'dir' file, perl must be after binutils
SUBDIR+= perl texinfo
.include <bsd.subdir.mk>
|