Makefile revision 1.6
1#	$NetBSD: Makefile,v 1.6 2002/11/18 12:39:54 lukem Exp $
2
3.include <bsd.own.mk>
4.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
5
6.include <bsd.kernobj.mk>
7
8KERN=		${KERNOBJDIR}/GENERIC/netbsd
9KERNEL=		netbsd-GENERIC.gz
10
11CLEANFILES+=	${KERNEL}
12
13${KERNEL}: ${KERN}
14	-rm -f ${.TARGET}
15	gzip -9c ${.ALLSRC} > ${.TARGET}
16
17realall: ${KERNEL}
18
19release: check_RELEASEDIR .WAIT ${KERNEL}
20	${RELEASE_INSTALL} ${KERNEL} ${RELEASEDIR}/binary/kernel
21
22.include <bsd.prog.mk>
23