24 lines
341 B
Makefile
24 lines
341 B
Makefile
# $NetBSD: Makefile,v 1.7 2012/08/10 16:05:26 joerg Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MKBINUTILS} != "no"
|
|
SUBDIR+= binutils
|
|
.endif
|
|
|
|
.if ${MKGCC} != "no"
|
|
.if ${HAVE_GCC} == 45
|
|
.if ${MKGCCCMDS} != "no"
|
|
SUBDIR+= gcc
|
|
.endif
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MKGDB} != "no"
|
|
.if ${HAVE_GDB} == "7"
|
|
SUBDIR+= gdb
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|