20 lines
530 B
Makefile
20 lines
530 B
Makefile
# $NetBSD: Makefile,v 1.4 2011/01/18 00:16:13 jym Exp $
|
|
#
|
|
|
|
# Install CD, to be made after 'build.sh release'
|
|
# Requires populated $RELEASEDIR/${MACHINE}
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${.CURDIR}/../Makefile.cdrom"
|
|
|
|
CDBASE= amd64cd # gives ${CDBASE}.iso
|
|
CDRELEASE= true # include $RELEASEDIR/$MACHINE
|
|
CDBUILDEXTRA= boot.cfg # Add boot.cfg file
|
|
CLEANFILES+= boot.cfg
|
|
|
|
prepare_md_post:
|
|
${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" \
|
|
< ${.CURDIR}/boot.cfg.in > boot.cfg
|
|
|
|
.include "${.CURDIR}/../../../common/Makefile.bootcd"
|