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.14 2007/03/06 21:56:47 bouyer Exp $
|
2004-05-12 20:56:41 +04:00
|
|
|
|
|
|
|
.include <bsd.own.mk>
|
1998-05-02 11:40:23 +04:00
|
|
|
|
2002-07-25 04:35:33 +04:00
|
|
|
SUBDIR= notes .WAIT
|
1998-05-02 11:40:23 +04:00
|
|
|
|
2002-03-06 16:32:51 +03:00
|
|
|
.if exists(${MACHINE}/miniroot/Makefile.inc)
|
2002-05-09 15:26:50 +04:00
|
|
|
SUBDIR+= miniroot .WAIT
|
1998-05-02 11:40:23 +04:00
|
|
|
.endif
|
|
|
|
|
2004-05-12 20:56:41 +04:00
|
|
|
.if exists(${RELEASEMACHINE}/Makefile)
|
|
|
|
SUBDIR+= ${RELEASEMACHINE}
|
1998-05-02 11:40:23 +04:00
|
|
|
.endif
|
|
|
|
|
2004-04-25 10:19:49 +04:00
|
|
|
.if make(obj)
|
|
|
|
SUBDIR+= utils
|
|
|
|
.endif
|
|
|
|
|
2002-07-23 14:43:50 +04:00
|
|
|
TARGETS+=release
|
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
|
|
|
TARGETS+=iso_image
|
2002-07-23 14:43:50 +04:00
|
|
|
|
1998-05-02 11:40:23 +04:00
|
|
|
.include <bsd.subdir.mk>
|