Home | History | Annotate | Line # | Download | only in ramdisk
Makefile revision 1.4
      1  1.4    lukem #	$NetBSD: Makefile,v 1.4 2002/03/06 13:21:00 lukem Exp $
      2  1.1  reinoud 
      3  1.4    lukem .include "${.CURDIR}/../../Makefile.inc"
      4  1.4    lukem .include <bsd.own.mk>
      5  1.1  reinoud 
      6  1.4    lukem IMAGE=		ramdisk.fs
      7  1.1  reinoud 
      8  1.4    lukem WARNS=		1
      9  1.1  reinoud 
     10  1.4    lukem CRUNCHBIN=	ramdiskbin
     11  1.4    lukem LISTS=		${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst
     12  1.4    lukem MTREECONF=	${DISTRIBDIR}/common/mtree.common
     13  1.4    lukem IMAGEENDIAN=	le
     14  1.4    lukem IMAGEDEPENDS+=	${CRUNCHBIN} \
     15  1.4    lukem 		disktab.preinstall dot.hdprofile dot.profile termcap.vt100 \
     16  1.4    lukem 		${_SRC_TOP_}/etc/group ${_SRC_TOP_}/etc/master.passwd \
     17  1.4    lukem 		${_SRC_TOP_}/etc/netconfig ${_SRC_TOP_}/etc/protocols \
     18  1.4    lukem 		${_SRC_TOP_}/etc/services
     19  1.1  reinoud 
     20  1.4    lukem MAKEDEVTARGETS=	ramdisk
     21  1.1  reinoud 
     22  1.4    lukem realall: ${IMAGE}
     23  1.1  reinoud 
     24  1.4    lukem release:
     25  1.1  reinoud 
     26  1.1  reinoud 
     27  1.4    lukem # Use stubs to eliminate some large stuff from libc
     28  1.4    lukem HACKSRC=${DISTRIBDIR}/utils/libhack
     29  1.4    lukem .include "${HACKSRC}/Makefile.inc"
     30  1.1  reinoud 
     31  1.4    lukem # Turn off libhack's gethostby*() as it only supports /etc/hosts
     32  1.4    lukem HACKOBJS:=	${HACKOBJS:Ngethost.o}
     33  1.1  reinoud 
     34  1.4    lukem # This is listed in ramdiskbin.conf but is built here.
     35  1.4    lukem ${CRUNCHBIN}: libhack.o
     36  1.1  reinoud 
     37  1.4    lukem 
     38  1.4    lukem .include "${DISTRIBDIR}/common/Makefile.crunch"
     39  1.4    lukem .include "${DISTRIBDIR}/common/Makefile.makedev"
     40  1.4    lukem .include "${DISTRIBDIR}/common/Makefile.image"
     41  1.4    lukem 
     42  1.4    lukem .include <bsd.prog.mk>
     43