31 lines
653 B
Makefile
31 lines
653 B
Makefile
# $NetBSD: Makefile.inc,v 1.13 2003/05/26 15:53:19 thorpej Exp $
|
|
#
|
|
# etc.evbarm/Makefile.inc -- evbarm-specific etc Makefile targets
|
|
#
|
|
|
|
.if ${MACHINE_ARCH} == "arm"
|
|
# Little endian platforms
|
|
EVBARM_BOARDS= ADI_BRH INTEGRATOR IQ80310 IQ80321 TEAMASA_NPWR
|
|
.else
|
|
# Big endian platforms
|
|
EVBARM_BOARDS= ADI_BRH
|
|
.endif
|
|
|
|
.for board in ${EVBARM_BOARDS}
|
|
KERNEL_SETS+= ${board}
|
|
BUILD_KERNELS+= ${board}_INSTALL
|
|
.endfor
|
|
|
|
.if ${MACHINE_ARCH} == "arm"
|
|
# Little endian platforms.
|
|
KERNEL_SETS+= IXM1200 SMDK2800
|
|
.else
|
|
# Big endian platforms.
|
|
KERNEL_SETS+= IXM1200
|
|
.endif
|
|
|
|
KERNEL_SUFFIXES= bin srec
|
|
|
|
INSTALLATION_DIRS+= binary/gzimg \
|
|
installation/instkernel
|