Home | History | Annotate | Line # | Download | only in instkernel
Makefile revision 1.4
      1  1.4    pavel #	$NetBSD: Makefile,v 1.4 2006/09/29 08:20:44 pavel Exp $
      2  1.1  hubertf 
      3  1.1  hubertf .include <bsd.own.mk>
      4  1.1  hubertf .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
      5  1.1  hubertf 
      6  1.1  hubertf #	create ${RAMDISK_*} variables
      7  1.1  hubertf #
      8  1.1  hubertf RAMDISKS=	RAMDISK_B	ramdisk-big		\
      9  1.1  hubertf 		RAMDISK_S	ramdisk-small		\
     10  1.1  hubertf 		RAMDISK_T	ramdisk-tiny		\
     11  1.1  hubertf 		RESCUE_T	ramdisk-rescuetiny
     12  1.1  hubertf 
     13  1.1  hubertf .for V F in ${RAMDISKS}
     14  1.1  hubertf ${V}DIR!=	cd ${.CURDIR}/../ramdisks/${F} && ${PRINTOBJDIR}
     15  1.1  hubertf ${V}=		${${V}DIR}/${F}.fs
     16  1.1  hubertf .endfor
     17  1.1  hubertf 
     18  1.2  hubertf MDSETTARGETS=		INSTALL			${RAMDISK_B}	-	\
     19  1.2  hubertf 			INSTALL_LAPTOP		${RAMDISK_B}	-	\
     20  1.2  hubertf 			INSTALL_XEN2_DOMU	${RAMDISK_B}	-	\
     21  1.2  hubertf 			INSTALL_XEN3_DOMU	${RAMDISK_B}	-	\
     22  1.2  hubertf 			INSTALL_SMALL		${RAMDISK_S}	-	\
     23  1.2  hubertf 			INSTALL_TINY		${RAMDISK_T}	-	\
     24  1.2  hubertf 			INSTALL_PS2		${RAMDISK_S}	-	\
     25  1.2  hubertf 			INSTALL_TINY		${RESCUE_T}	netbsd-RESCUE_TINY
     26  1.1  hubertf 
     27  1.1  hubertf MDSET_RELEASEDIR=	binary/kernel
     28  1.3   bouyer # do not strip Xen kernels, there's no space constraints here.
     29  1.3   bouyer MDSET_NOSTRIP.netbsd-INSTALL_XEN2_DOMU=
     30  1.3   bouyer MDSET_NOSTRIP.netbsd-INSTALL_XEN3_DOMU=
     31  1.4    pavel # do not strip any other kernels, it is done by Makefile.tarfloppy before
     32  1.4    pavel # they are written to a floppy.
     33  1.4    pavel MDSET_NOSTRIP=
     34  1.3   bouyer MDSET_NOSYMBOLS.netbsd-INSTALL_XEN2_DOMU=
     35  1.3   bouyer MDSET_NOSYMBOLS.netbsd-INSTALL_XEN3_DOMU=
     36  1.1  hubertf 
     37  1.1  hubertf .include "${DISTRIBDIR}/common/Makefile.mdset"
     38  1.1  hubertf 
     39  1.1  hubertf .include <bsd.prog.mk>
     40