blob: 2195efc590b18c78c3b034a5b8444d581c8e4649 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: Makefile,v 1.9 2014/02/26 09:54:32 mrg Exp $
.include <bsd.own.mk>
.if ${MKBINUTILS} != "no"
SUBDIR+= binutils
.endif
.if ${MKGCC} != "no"
.if ${HAVE_GCC} >= 45
.if ${MKGCCCMDS} != "no"
SUBDIR+= ${EXTERNAL_GCC_SUBDIR}
.endif
.endif
.endif
.if ${MKGDB} != "no"
.if ${HAVE_GDB} == "7"
SUBDIR+= gdb
.endif
.endif
.include <bsd.subdir.mk>
|