NetBSD/distrib/i386/instkernel/Makefile
bouyer 356edfcf8e Don't strip (and don't generate the symbols.gz files) for Xen INSTALL kernels.
There's no space contraint here, and this makes debugging easier.
2006-08-23 19:02:37 +00:00

37 lines
1.0 KiB
Makefile

# $NetBSD: Makefile,v 1.3 2006/08/23 19:02:37 bouyer Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
# create ${RAMDISK_*} variables
#
RAMDISKS= RAMDISK_B ramdisk-big \
RAMDISK_S ramdisk-small \
RAMDISK_T ramdisk-tiny \
RESCUE_T ramdisk-rescuetiny
.for V F in ${RAMDISKS}
${V}DIR!= cd ${.CURDIR}/../ramdisks/${F} && ${PRINTOBJDIR}
${V}= ${${V}DIR}/${F}.fs
.endfor
MDSETTARGETS= INSTALL ${RAMDISK_B} - \
INSTALL_LAPTOP ${RAMDISK_B} - \
INSTALL_XEN2_DOMU ${RAMDISK_B} - \
INSTALL_XEN3_DOMU ${RAMDISK_B} - \
INSTALL_SMALL ${RAMDISK_S} - \
INSTALL_TINY ${RAMDISK_T} - \
INSTALL_PS2 ${RAMDISK_S} - \
INSTALL_TINY ${RESCUE_T} netbsd-RESCUE_TINY
MDSET_RELEASEDIR= binary/kernel
# do not strip Xen kernels, there's no space constraints here.
MDSET_NOSTRIP.netbsd-INSTALL_XEN2_DOMU=
MDSET_NOSTRIP.netbsd-INSTALL_XEN3_DOMU=
MDSET_NOSYMBOLS.netbsd-INSTALL_XEN2_DOMU=
MDSET_NOSYMBOLS.netbsd-INSTALL_XEN3_DOMU=
.include "${DISTRIBDIR}/common/Makefile.mdset"
.include <bsd.prog.mk>