Home | History | Annotate | Line # | Download | only in ramdisk
Makefile revision 1.15.6.1
      1  1.15.6.1    martin #	$NetBSD: Makefile,v 1.15.6.1 2023/07/27 18:01:37 martin 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.13  christos 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.15  christos .if !empty(MACHINE_ARCH:M*el)
     17       1.1     shige IMAGEENDIAN=	le
     18       1.1     shige .else
     19       1.1     shige IMAGEENDIAN=	be
     20       1.1     shige .endif
     21  1.15.6.1    martin 
     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.15.6.1    martin MAKEDEVTARGETS= std md0 wd0 wd1 wd2 wd3 cd0 cd1 sd0 sd1 sd2 sd3 st0 ipty \
     29  1.15.6.1    martin 		bpf dk0 dk1 dk2 dk3
     30       1.1     shige 
     31       1.1     shige # Use stubs to eliminate some large stuff from libc
     32       1.1     shige HACKSRC=	${DISTRIBDIR}/utils/libhack
     33       1.1     shige .include	"${HACKSRC}/Makefile.inc"
     34       1.1     shige ${CRUNCHBIN}:	libhack.o
     35       1.1     shige 
     36       1.1     shige .include "${DISTRIBDIR}/common/Makefile.crunch"
     37      1.14    martin .include "${DISTRIBDIR}/common/Makefile.dhcpcd"
     38       1.1     shige .include "${DISTRIBDIR}/common/Makefile.makedev"
     39       1.1     shige .include "${DISTRIBDIR}/common/Makefile.image"
     40       1.1     shige 
     41       1.1     shige release:
     42       1.1     shige 
     43       1.1     shige .include <bsd.prog.mk>
     44