Home | History | Annotate | Line # | Download | only in kernel-generic
Makefile revision 1.2
      1  1.2   lukem #	$NetBSD: Makefile,v 1.2 2002/04/12 14:44:39 lukem Exp $
      2  1.1  nonaka 
      3  1.2   lukem .include <bsd.own.mk>
      4  1.2   lukem .include "${_SRC_TOP_}/distrib/Makefile.inc"
      5  1.1  nonaka 
      6  1.1  nonaka .include <bsd.kernobj.mk>
      7  1.1  nonaka 
      8  1.1  nonaka KERN=		${KERNOBJDIR}/GENERIC/netbsd
      9  1.1  nonaka KERNEL=		netbsd.GENERIC.gz
     10  1.1  nonaka 
     11  1.1  nonaka CLEANFILES+=	${KERNEL} netbsd.tmp netbsd.tmp.gz
     12  1.1  nonaka 
     13  1.1  nonaka ${KERNEL}: ${KERN}
     14  1.1  nonaka 	cp ${KERN} netbsd.tmp
     15  1.2   lukem 	gzip -9f netbsd.tmp
     16  1.1  nonaka 	mv netbsd.tmp.gz ${.TARGET}
     17  1.1  nonaka 
     18  1.2   lukem realall: ${KERNEL}
     19  1.2   lukem 
     20  1.2   lukem release: check_RELEASEDIR .WAIT ${KERNEL}
     21  1.1  nonaka 	-mkdir -p ${RELEASEDIR}/binary/kernel
     22  1.2   lukem 	${RELINSTALL} ${KERNEL} ${RELEASEDIR}/binary/kernel
     23  1.1  nonaka 
     24  1.2   lukem .include <bsd.prog.mk>
     25