8e8fe76d90
.WAIT between the items, and remove .WAIT from ${KERNELS}. Use ${KERNELDEPS} in make dependencies.
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.17 2002/04/14 06:18:12 lukem Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${_SRC_TOP_}/distrib/Makefile.inc"
|
|
|
|
.include <bsd.kernobj.mk>
|
|
|
|
MINIROOTOBJ!= cd ${.CURDIR}/../miniroot && ${PRINTOBJDIR}
|
|
MINIROOT= ${MINIROOTOBJ}/miniroot.fs
|
|
MDSETTARGETS= RAMDISK ${MINIROOT} netbsd \
|
|
INSTALL_TX3912 ${MINIROOT} netbsd.TX3912
|
|
|
|
ITARGET= ${RELEASEDIR}/installation
|
|
PBSDBOOTDIR= ${KERNSRCDIR}/arch/${MACHINE}/stand/pbsdboot
|
|
PBSDBOOT= ${PBSDBOOTDIR}/pbsdboot.uu
|
|
PBSDBOOT1= ${PBSDBOOTDIR}/pbsdboot1.uu
|
|
HPCBOOTDIR= ${KERNSRCDIR}/arch/hpc/stand
|
|
HPCBOOT= ${HPCBOOTDIR}/binary/MIPS/hpcboot.exe.uu
|
|
|
|
release: check_RELEASEDIR .WAIT ${KERNELDEPS}
|
|
-mkdir -p ${ITARGET}
|
|
${RELINSTALL} ${KERNELS} ${KERNELSYMS} ${ITARGET}
|
|
(cd ${ITARGET}; ${UUDECODE} ${PBSDBOOT1}; \
|
|
chmod ${NONBINMODE} pbsdboot1.exe)
|
|
(cd ${ITARGET}; ${UUDECODE} ${PBSDBOOT}; \
|
|
chmod ${NONBINMODE} pbsdboot.exe)
|
|
(cd ${ITARGET}; rm -f hpcboot.exe; \
|
|
${UUDECODE} -p ${HPCBOOT} >hpcboot.exe ; \
|
|
chmod ${NONBINMODE} hpcboot.exe)
|
|
${MAKESUMS} -t ${ITARGET} '*.gz' '*.exe'
|
|
|
|
.include "${DISTRIBDIR}/common/Makefile.mdset"
|
|
|
|
.include <bsd.prog.mk>
|