c23dc553e9
switch the sense of the gdb and gcc tests to list the platforms not switched to gcc 4.5 or gdb 7, which is now: GCC 4.1: .if ${MACHINE_ARCH} == "alpha" || \ ${MACHINE_CPU} == "arm" || \ ${MACHINE_CPU} == "m68k" || \ ${MACHINE_CPU} == "vax" GDB 6: .if ${MACHINE_ARCH} == "alpha" || \ ${MACHINE_ARCH} == "hppa" || \ ${MACHINE_CPU} == "mips" || \ ${MACHINE_CPU} == "sh3" || \ ${MACHINE_ARCH} == "vax" let's go, people! (-:
22 lines
311 B
Makefile
22 lines
311 B
Makefile
# $NetBSD: Makefile,v 1.6 2011/10/31 08:14:44 mrg Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MKBINUTILS} != "no"
|
|
SUBDIR+= binutils
|
|
.endif
|
|
|
|
.if ${HAVE_GCC} == 45
|
|
.if ${MKGCCCMDS} != "no"
|
|
SUBDIR+= gcc
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MKGDB} != "no"
|
|
.if ${HAVE_GDB} == "7"
|
|
SUBDIR+= gdb
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|