NetBSD/external/gpl3/Makefile
mrg c23dc553e9 obsolete now useless (and wrongly set to "219" :-) HAVE_BINUTILS.
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!  (-:
2011-10-31 08:14:43 +00:00

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>