1 # $NetBSD: Makefile,v 1.41 2014/08/04 11:30:35 martin Exp $ 2 3 .include <bsd.own.mk> 4 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" 5 6 IMAGE= ramdisk.fs 7 IMAGESIZE= 2218k 8 MAKEFS_FLAGS= -f 15 9 10 WARNS= 1 11 DBG= -Os -mmultiple -mstring 12 13 CRUNCHBIN= ramdiskbin 14 CRUNCHGEN_FLAGS= -d "${DBG}" 15 LISTS= ${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst 16 MTREECONF= ${DISTRIBDIR}/common/mtree.common 17 IMAGEENDIAN= be 18 MAKEDEVTARGETS= floppy 19 IMAGEDEPENDS= ${CRUNCHBIN} \ 20 dot.profile \ 21 ${DESTDIR}/usr/mdec/ofwboot ${DESTDIR}/usr/mdec/bootxx \ 22 ${NETBSDSRCDIR}/etc/group ${NETBSDSRCDIR}/etc/master.passwd \ 23 ${NETBSDSRCDIR}/etc/netconfig ${DISTRIBDIR}/common/protocols \ 24 ${DISTRIBDIR}/common/services 25 SMALLPROG_INET6=1 26 27 .if ${USE_INET6} != "no" 28 LISTS+= ${DISTRIBDIR}/common/list.inet6 29 .endif 30 31 # Use stubs to eliminate some large stuff from libc 32 HACKSRC= ${DISTRIBDIR}/utils/libhack 33 .include "${HACKSRC}/Makefile.inc" 34 ${CRUNCHBIN}: libhack.o 35 36 .include "${DISTRIBDIR}/common/Makefile.crunch" 37 .include "${DISTRIBDIR}/common/Makefile.makedev" 38 .include "${DISTRIBDIR}/common/Makefile.image" 39 40 release: 41 42 .include <bsd.prog.mk> 43