1 1.13 thorpej # $NetBSD: Makefile.inc,v 1.13 2003/05/26 15:53:19 thorpej Exp $ 2 1.1 thorpej # 3 1.1 thorpej # etc.evbarm/Makefile.inc -- evbarm-specific etc Makefile targets 4 1.1 thorpej # 5 1.1 thorpej 6 1.13 thorpej .if ${MACHINE_ARCH} == "arm" 7 1.13 thorpej # Little endian platforms 8 1.13 thorpej EVBARM_BOARDS= ADI_BRH INTEGRATOR IQ80310 IQ80321 TEAMASA_NPWR 9 1.13 thorpej .else 10 1.13 thorpej # Big endian platforms 11 1.13 thorpej EVBARM_BOARDS= ADI_BRH 12 1.13 thorpej .endif 13 1.13 thorpej 14 1.13 thorpej .for board in ${EVBARM_BOARDS} 15 1.12 thorpej KERNEL_SETS+= ${board} 16 1.12 thorpej BUILD_KERNELS+= ${board}_INSTALL 17 1.12 thorpej .endfor 18 1.12 thorpej 19 1.13 thorpej .if ${MACHINE_ARCH} == "arm" 20 1.13 thorpej # Little endian platforms. 21 1.12 thorpej KERNEL_SETS+= IXM1200 SMDK2800 22 1.13 thorpej .else 23 1.13 thorpej # Big endian platforms. 24 1.13 thorpej KERNEL_SETS+= IXM1200 25 1.13 thorpej .endif 26 1.12 thorpej 27 1.3 thorpej KERNEL_SUFFIXES= bin srec 28 1.6 thorpej 29 1.9 lukem INSTALLATION_DIRS+= binary/gzimg \ 30 1.7 thorpej installation/instkernel 31