1 1.32 lukem # $NetBSD: Makefile,v 1.32 2002/03/11 07:04:21 lukem Exp $ 2 1.21 pk # 3 1.21 pk # ramdisk.fs is the microroot filesystem intended for use with 4 1.21 pk # the INSTALL kernel. It provides just enough tools to extract the 5 1.21 pk # miniroot-based `instfs' filesystem into an MFS mount point 6 1.21 pk # and start the installation scripts from there (see dot.profile). 7 1.21 pk # 8 1.1 mrg 9 1.32 lukem .include "${.CURDIR}/../../Makefile.inc" 10 1.32 lukem .include <bsd.own.mk> 11 1.1 mrg 12 1.32 lukem IMAGE= ramdisk.fs 13 1.32 lukem IMAGESIZE= 1360b 14 1.1 mrg 15 1.32 lukem WARNS= 1 16 1.1 mrg 17 1.32 lukem CRUNCHBIN= ramdiskbin 18 1.32 lukem LISTS= ${.CURDIR}/list 19 1.32 lukem MTREECONF= ${DISTRIBDIR}/common/mtree.common 20 1.32 lukem IMAGEENDIAN= be 21 1.32 lukem MAKEDEVTARGETS= floppy 22 1.32 lukem IMAGEDEPENDS+= ${CRUNCHBIN} dot.profile 23 1.1 mrg 24 1.1 mrg 25 1.32 lukem realall: ${IMAGE} 26 1.11 mrg 27 1.32 lukem # Use stubs to eliminate some large stuff from libc 28 1.32 lukem HACKSRC=${_SRC_TOP_}/distrib/utils/libhack 29 1.32 lukem .include "${HACKSRC}/Makefile.inc" 30 1.6 mrg 31 1.6 mrg # This is listed in ramdiskbin.conf but is built here. 32 1.32 lukem ${CRUNCHBIN}: libhack.o 33 1.32 lukem 34 1.32 lukem release: 35 1.6 mrg 36 1.1 mrg 37 1.32 lukem .include "${DISTRIBDIR}/common/Makefile.crunch" 38 1.32 lukem .include "${DISTRIBDIR}/common/Makefile.makedev" 39 1.32 lukem .include "${DISTRIBDIR}/common/Makefile.image" 40 1.32 lukem 41 1.31 jmc .include <bsd.prog.mk> 42