26 lines
758 B
Makefile
26 lines
758 B
Makefile
# $NetBSD: Makefile.inc,v 1.13 2011/02/20 08:27:32 matt Exp $
|
|
#
|
|
# etc.evbmips/Makefile.inc -- evbmips-specific etc Makefile targets
|
|
#
|
|
|
|
# If you change the list of distributed kernels, don't forget
|
|
# to update the release documentation in distrib/notes/common/contents
|
|
|
|
KERNEL_SUFFIXES= srec
|
|
|
|
.if ${MACHINE_ARCH} == "mipsel"
|
|
KERNEL_SETS= ALCHEMY DBAU1500 DBAU1550 MALTA MTX-1 OMSAL400
|
|
BUILD_KERNELS= INSTALL_OMSAL400 INSTALL_MALTA
|
|
|
|
.elif ${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el"
|
|
KERNEL_SETS= MALTA32 MALTA64 XLSATX32 XLSATX64
|
|
BUILD_KERNELS= INSTALL_MALTA32 INSTALL_MALTA64
|
|
BUILD_KERNELS+= INSTALL_XLSATX32 INSTALL_XLSATX64
|
|
|
|
.else
|
|
KERNEL_SETS= ALCHEMY DBAU1500 DBAU1550 MALTA
|
|
BUILD_KERNELS= INSTALL_OMSAL400 INSTALL_MALTA
|
|
|
|
.endif
|
|
|