Home | History | Annotate | Line # | Download | only in ramdisk
Makefile revision 1.12.16.1
      1  1.12.16.1  pgoyette #	$NetBSD: Makefile,v 1.12.16.1 2017/03/20 06:52:05 pgoyette 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.12.16.1  pgoyette 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.8      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.6       abs 		dot.profile \
     24        1.1     shige 		${NETBSDSRCDIR}/etc/group ${NETBSDSRCDIR}/etc/master.passwd \
     25        1.5       abs 		${NETBSDSRCDIR}/etc/netconfig ${DISTRIBDIR}/common/protocols \
     26        1.5       abs 		${DISTRIBDIR}/common/services
     27        1.1     shige 
     28       1.12  christos MAKEDEVTARGETS= std md0 wd0 wd1 wd2 wd3 cd0 cd1 sd0 sd1 sd2 sd3 st0 ipty
     29        1.1     shige 
     30        1.1     shige # Use stubs to eliminate some large stuff from libc
     31        1.1     shige HACKSRC=	${DISTRIBDIR}/utils/libhack
     32        1.1     shige .include	"${HACKSRC}/Makefile.inc"
     33        1.1     shige ${CRUNCHBIN}:	libhack.o
     34        1.1     shige 
     35        1.1     shige .include "${DISTRIBDIR}/common/Makefile.crunch"
     36        1.1     shige .include "${DISTRIBDIR}/common/Makefile.makedev"
     37        1.1     shige .include "${DISTRIBDIR}/common/Makefile.image"
     38        1.1     shige 
     39        1.1     shige release:
     40        1.1     shige 
     41        1.1     shige .include <bsd.prog.mk>
     42