Makefile revision 1.10.8.1       1 #	$NetBSD: Makefile,v 1.10.8.1 2024/05/11 14:31:57 martin Exp $
      2 #
      3 
      4 # Install CD, to be made after 'build.sh release'
      5 # Requires populated $RELEASEDIR/${MACHINE}
      6 
      7 .include <bsd.own.mk>
      8 .include "${.CURDIR}/../Makefile.cdrom"
      9 
     10 CDBASE=		i386cd			# gives ${CDBASE}.iso
     11 CDRELEASE=	true                    # include $RELEASEDIR/$RELEASEMACHINEDIR
     12 CDRELEASE_NODEBUG=	true
     13 CDBUILDEXTRA+=	boot.cfg		# Add boot.cfg file
     14 CLEANFILES+=	boot.cfg
     15 
     16 # already (probably) booting from CD if using this and the floppy images
     17 # are 20MB+ when combined
     18 CDRELEASE_EXCLUDE+=	-s ',./installation/floppy/.*,,gp'
     19 
     20 # MONOLITHIC (i386-only) was originally added to the release build
     21 # for upgrades from netbsd-5, and now primarily exists so the no-modules
     22 # build can continue to be tested.  this takes up 20MB+ space.
     23 .  for sufx in tgz tar.xz
     24 CDRELEASE_EXCLUDE+=	-s ',./binary/sets/kern-INSTALL.${sufx},,gp'
     25 CDRELEASE_EXCLUDE+=	-s ',./binary/sets/kern-MONOLITHIC.${sufx},,gp'
     26 .  endfor
     27 
     28 CDRELEASE_EXCLUDE+=	-s ',./binary/kernel/netbsd-INSTALL.gz,,gp'
     29 CDRELEASE_EXCLUDE+=	-s ',./binary/kernel/netbsd-MONOLITHIC.gz,,gp'
     30 
     31 prepare_md_post:
     32 	${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" < ${.CURDIR}/boot.cfg.in > boot.cfg
     33 
     34 .include "${.CURDIR}/../../../common/Makefile.bootcd"
     35