1 # $NetBSD: Makefile.ramdisk,v 1.9 2010/02/11 09:06:47 roy Exp $ 2 3 .include <bsd.own.mk> 4 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" 5 6 AMD64COMMON= ${.CURDIR}/../common 7 8 .PATH: ${AMD64COMMON} 9 10 WARNS= 1 11 DBG= -Os -fno-asynchronous-unwind-tables 12 CRUNCHGEN_FLAGS= -d "${DBG}" 13 14 CRUNCHBIN= ramdiskbin 15 LISTS= ${.CURDIR}/list ${AMD64COMMON}/list.ramdisk 16 MTREECONF= ${DISTRIBDIR}/common/mtree.common 17 IMAGEENDIAN= le 18 IMAGEDEPENDS+= ${CRUNCHBIN} \ 19 dot.profile \ 20 ${DESTDIR}/usr/mdec/boot \ 21 ${DESTDIR}/usr/mdec/bootxx_ffsv1 \ 22 ${DESTDIR}/usr/mdec/mbr \ 23 ${DESTDIR}/usr/mdec/mbr_ext \ 24 ${DESTDIR}/usr/mdec/mbr_bootsel \ 25 ${NETBSDSRCDIR}/etc/group ${NETBSDSRCDIR}/etc/master.passwd \ 26 ${NETBSDSRCDIR}/etc/netconfig ${DISTRIBDIR}/common/protocols \ 27 ${DISTRIBDIR}/common/services 28 PARSELISTENV+= BOOTMODEL=${BOOTMODEL:Q} 29 30 .if defined(USE_SYSINST) 31 LISTS+= ${DISTRIBDIR}/common/list.sysinst 32 MAKEFS_FLAGS+= -f 14 33 .endif 34 35 # Use stubs to eliminate some large stuff from libc 36 HACKSRC= ${DISTRIBDIR}/utils/libhack 37 .include "${HACKSRC}/Makefile.inc" 38 ${CRUNCHBIN}: libhack.o 39 40 .include "${DISTRIBDIR}/common/Makefile.crunch" 41 .include "${DISTRIBDIR}/common/Makefile.dhcpcd" 42 .include "${DISTRIBDIR}/common/Makefile.makedev" 43 .include "${DISTRIBDIR}/common/Makefile.image" 44 45 release: 46 47 .include <bsd.prog.mk> 48