Home | History | Annotate | Line # | Download | only in installdvd
Makefile revision 1.2
      1 #	$NetBSD: Makefile,v 1.2 2024/04/26 17:36:32 nia 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=		i386dvd			# gives ${CDBASE}.iso
     11 CDRELEASE=	true                    # include $RELEASEDIR/$RELEASEMACHINEDIR
     12 CDBUILDEXTRA+=	boot.cfg		# Add boot.cfg file
     13 CLEANFILES+=	boot.cfg
     14 
     15 .if ${MKKMOD} != "no"
     16 CD_SETS+=	modules
     17 .endif
     18 
     19 .if ${MKMAN} != "no"
     20 CD_SETS+=	man
     21 .endif
     22 
     23 prepare_md_post:
     24 	${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" < ${.CURDIR}/boot.cfg.in > boot.cfg
     25 
     26 .include "${.CURDIR}/../../../common/Makefile.bootcd"
     27