23 lines
502 B
Makefile
23 lines
502 B
Makefile
# $NetBSD: Makefile,v 1.10 2014/01/27 08:18:07 apb Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
|
|
|
|
.include <bsd.kernobj.mk>
|
|
|
|
KERN= ${KERNOBJDIR}/GENERIC/netbsd
|
|
KERNEL= netbsd-GENERIC.gz
|
|
|
|
CLEANFILES+= ${KERNEL}
|
|
|
|
${KERNEL}: ${KERN}
|
|
-rm -f ${.TARGET}
|
|
${TOOL_GZIP} -9nc ${.ALLSRC} > ${.TARGET}
|
|
|
|
realall: ${KERNEL}
|
|
|
|
release: check_RELEASEDIR .WAIT ${KERNEL}
|
|
${RELEASE_INSTALL} ${KERNEL} ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel
|
|
|
|
.include <bsd.prog.mk>
|