Add an iso_image target (iso-image as a target name doesn't play well with
bsd.subdirs.mk) in distrib/makefile, which builds an iso image for $MACHINE
with binary sets, stored in ${RELEASEDIR}/iso. The image is bootable for:
alpha, amd64, cats, i386, pmax, sgimips, sparc, sparc64, sun3, vax.
mac68k/macppc no there yet because of missing feature in makefs.
call iso_image in distrib/ for iso-image in the top Makefile.
2007-03-07 00:56:47 +03:00
|
|
|
# $NetBSD: Makefile,v 1.13 2007/03/06 21:57:15 bouyer Exp $
|
2001-10-15 20:22:50 +04:00
|
|
|
|
2002-03-06 00:23:28 +03:00
|
|
|
.include <bsd.own.mk>
|
2002-05-02 22:02:14 +04:00
|
|
|
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
|
2001-10-15 20:22:50 +04:00
|
|
|
|
2002-04-11 19:34:52 +04:00
|
|
|
MINIROOTDIR!= cd ${.CURDIR}/../miniroot && ${PRINTOBJDIR}
|
2002-04-21 15:20:45 +04:00
|
|
|
MINIROOT= ${MINIROOTDIR}/miniroot.fs
|
2001-10-15 20:22:50 +04:00
|
|
|
|
2002-05-09 01:44:53 +04:00
|
|
|
MDSETTARGETS= RAMDISK ${MINIROOT} netbsd
|
2002-05-02 22:02:14 +04:00
|
|
|
MDSET_RELEASEDIR= installation
|
2001-10-15 20:22:50 +04:00
|
|
|
|
2002-04-11 19:34:52 +04:00
|
|
|
.include "${DISTRIBDIR}/common/Makefile.mdset"
|
2002-04-12 09:33:58 +04:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|
Add an iso_image target (iso-image as a target name doesn't play well with
bsd.subdirs.mk) in distrib/makefile, which builds an iso image for $MACHINE
with binary sets, stored in ${RELEASEDIR}/iso. The image is bootable for:
alpha, amd64, cats, i386, pmax, sgimips, sparc, sparc64, sun3, vax.
mac68k/macppc no there yet because of missing feature in makefs.
call iso_image in distrib/ for iso-image in the top Makefile.
2007-03-07 00:56:47 +03:00
|
|
|
|
|
|
|
SUBDIR= cdroms
|
|
|
|
TARGETS+= release
|
|
|
|
|
|
|
|
iso_image:
|
|
|
|
${MAKEDIRTARGET} cdroms iso_image
|
|
|
|
|
|
|
|
.include <bsd.subdir.mk>
|