Home | History | Annotate | Line # | Download | only in ramdisk
Makefile revision 1.2.24.3
      1  1.2.24.3    matt #	$NetBSD: Makefile,v 1.2.24.3 2011/12/27 17:35:41 matt Exp $
      2       1.1   shige 
      3       1.1   shige .include <bsd.own.mk>
      4       1.1   shige .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
      5       1.1   shige 
      6       1.1   shige IMAGE=		ramdisk.fs
      7       1.1   shige IMAGESIZE=	4096k
      8       1.1   shige MAKEFS_FLAGS=	-f 15
      9       1.1   shige 
     10       1.1   shige WARNS=		1
     11       1.1   shige DBG=		-Os
     12       1.1   shige 
     13       1.1   shige CRUNCHBIN=	ramdiskbin
     14       1.1   shige LISTS=		${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst
     15       1.1   shige MTREECONF=	${DISTRIBDIR}/common/mtree.common
     16  1.2.24.1    matt .if ${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mips64el"
     17       1.1   shige IMAGEENDIAN=	le
     18       1.1   shige .else
     19       1.1   shige IMAGEENDIAN=	be
     20       1.1   shige .endif
     21       1.1   shige MAKEDEVTARGETS=	ramdisk
     22       1.1   shige IMAGEDEPENDS=	${CRUNCHBIN} \
     23       1.1   shige 		disktab.preinstall dot.hdprofile dot.profile \
     24       1.1   shige 		${DESTDIR}/usr/share/misc/termcap \
     25       1.1   shige 		${NETBSDSRCDIR}/etc/group ${NETBSDSRCDIR}/etc/master.passwd \
     26       1.1   shige 		${NETBSDSRCDIR}/etc/netconfig ${NETBSDSRCDIR}/etc/protocols \
     27       1.2  dogcow 		${NETBSDSRCDIR}/distrib/common/services
     28       1.1   shige 
     29       1.1   shige MAKEDEVTARGETS= std md0 wd0 wd1 wd2 wd3 cd0 cd1 sd0 sd1 sd2 sd3 st0 pty0 ttyv0
     30  1.2.24.2    matt MAKEDEVTARGETS+= ld0 ld1
     31  1.2.24.3    matt MAKEDEVTARGETS+= flash0 flash1 flash2 flash3
     32       1.1   shige 
     33       1.1   shige # Use stubs to eliminate some large stuff from libc
     34       1.1   shige HACKSRC=	${DISTRIBDIR}/utils/libhack
     35       1.1   shige .include	"${HACKSRC}/Makefile.inc"
     36       1.1   shige ${CRUNCHBIN}:	libhack.o
     37       1.1   shige 
     38       1.1   shige .include "${DISTRIBDIR}/common/Makefile.crunch"
     39       1.1   shige .include "${DISTRIBDIR}/common/Makefile.makedev"
     40       1.1   shige .include "${DISTRIBDIR}/common/Makefile.image"
     41       1.1   shige 
     42       1.1   shige release:
     43       1.1   shige 
     44       1.1   shige .include <bsd.prog.mk>
     45