18 lines
465 B
Makefile
18 lines
465 B
Makefile
# $NetBSD: Makefile.inc,v 1.6 2021/04/25 23:40:51 christos Exp $
|
|
#
|
|
# etc.cobalt/Makefile.inc -- cobalt-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
|
|
|
|
.if !empty(MACHINE_ARCH:Mmips*64el)
|
|
KERNEL_SETS= GENERIC32 GENERIC64 INSTALL32 INSTALL64
|
|
|
|
BUILD_KERNELS= RAMDISK32 RAMDISK64
|
|
.else
|
|
KERNEL_SETS= GENERIC INSTALL
|
|
|
|
BUILD_KERNELS= RAMDISK
|
|
.endif
|