Home | History | Annotate | Line # | Download | only in ramdisk
Makefile revision 1.4.24.1
      1  1.4.24.1     matt #	$NetBSD: Makefile,v 1.4.24.1 2014/01/09 22:58:15 matt Exp $
      2       1.1  thorpej 
      3       1.1  thorpej .include <bsd.own.mk>
      4       1.3    lukem .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
      5       1.1  thorpej 
      6       1.1  thorpej IMAGE=		ramdisk.fs
      7       1.1  thorpej IMAGESIZE=	3072k
      8       1.1  thorpej MAKEFS_FLAGS=	-f 15
      9       1.1  thorpej 
     10       1.1  thorpej WARNS=		1
     11       1.1  thorpej DBG=		-Os
     12       1.1  thorpej 
     13       1.1  thorpej CRUNCHBIN=	ramdiskbin
     14       1.1  thorpej LISTS=		${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst
     15       1.1  thorpej MTREECONF=	${DISTRIBDIR}/common/mtree.common
     16  1.4.24.1     matt .if empty(MACHINE_ARCH:M*eb)
     17       1.1  thorpej IMAGEENDIAN=	le
     18  1.4.24.1     matt .else
     19  1.4.24.1     matt IMAGEENDIAN=	be
     20  1.4.24.1     matt .endif
     21       1.1  thorpej MAKEDEVTARGETS=	ramdisk
     22       1.1  thorpej IMAGEDEPENDS=	${CRUNCHBIN} \
     23       1.1  thorpej 		disktab.preinstall dot.hdprofile dot.profile \
     24       1.1  thorpej 		${DESTDIR}/usr/share/misc/termcap \
     25       1.2    lukem 		${NETBSDSRCDIR}/etc/group ${NETBSDSRCDIR}/etc/master.passwd \
     26       1.2    lukem 		${NETBSDSRCDIR}/etc/netconfig ${NETBSDSRCDIR}/etc/protocols \
     27       1.4   dogcow 		${NETBSDSRCDIR}/distrib/common/services
     28       1.1  thorpej 
     29       1.1  thorpej # Use stubs to eliminate some large stuff from libc
     30       1.1  thorpej HACKSRC=	${DISTRIBDIR}/utils/libhack
     31       1.1  thorpej .include	"${HACKSRC}/Makefile.inc"
     32       1.1  thorpej ${CRUNCHBIN}:	libhack.o
     33       1.1  thorpej 
     34       1.1  thorpej .include "${DISTRIBDIR}/common/Makefile.crunch"
     35       1.1  thorpej .include "${DISTRIBDIR}/common/Makefile.makedev"
     36       1.1  thorpej .include "${DISTRIBDIR}/common/Makefile.image"
     37       1.3    lukem 
     38       1.3    lukem release:
     39       1.1  thorpej 
     40       1.1  thorpej .include <bsd.prog.mk>
     41