42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2002/02/24 09:57:18 lukem Exp $
|
|
|
|
.include "${.CURDIR}/../../Makefile.inc"
|
|
.include <bsd.own.mk>
|
|
|
|
IMAGE= ramdisk.fs
|
|
IMAGESIZE= 1200k
|
|
|
|
WARNS= 1
|
|
|
|
CRUNCHBIN= ramdiskbin
|
|
LISTS= ${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst
|
|
MTREECONF= ${DISTRIBDIR}/common/mtree.common
|
|
IMAGEENDIAN= be
|
|
IMAGEDEPENDS+= ${CRUNCHBIN} dot.profile termcap.mini \
|
|
${_SRC_TOP_}/etc/group ${_SRC_TOP_}/etc/master.passwd \
|
|
${_SRC_TOP_}/etc/protocols ${_SRC_TOP_}/etc/netconfig \
|
|
${_SRC_TOP_}/etc/services ${DESTDIR}/usr/mdec/uboot.lif
|
|
|
|
|
|
MAKEDEVTARGETS+=std md0
|
|
|
|
|
|
realall: ${IMAGE}
|
|
|
|
# Use stubs to eliminate some large stuff from libc
|
|
HACKSRC=${_SRC_TOP_}/distrib/utils/libhack
|
|
.include "${HACKSRC}/Makefile.inc"
|
|
# turn off small gethostby* temporarily
|
|
HACKOBJS:= ${HACKOBJS:Ngethost.o}
|
|
|
|
# This is listed in ramdiskbin.conf but is built here.
|
|
${CRUNCHBIN}: libhack.o
|
|
|
|
release:
|
|
|
|
.include "${DISTRIBDIR}/common/Makefile.crunch"
|
|
.include "${DISTRIBDIR}/common/Makefile.makedev"
|
|
.include "${DISTRIBDIR}/common/Makefile.image"
|
|
|
|
.include <bsd.prog.mk>
|