45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2002/04/12 05:15:18 lukem Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${_SRC_TOP_}/distrib/Makefile.inc"
|
|
|
|
IMAGE= ramdisk.fs
|
|
IMAGETAR= diskimage.tgz
|
|
IMAGESIZE= 3m
|
|
MAKEFS_FLAGS= -f 15
|
|
|
|
WARNS= 1
|
|
DBG= -Os
|
|
|
|
CRUNCHBIN= ramdiskbin
|
|
LISTS= ${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst
|
|
MTREECONF= ${DISTRIBDIR}/common/mtree.common
|
|
IMAGEENDIAN= le
|
|
MAKEDEVTARGETS= minimal pty0
|
|
IMAGEDEPENDS= ${CRUNCHBIN} \
|
|
disktab.preinstall dot.hdprofile dot.profile \
|
|
${DISTRIBDIR}/miniroot/termcap.rcons \
|
|
${DESTDIR}/usr/mdec/boot.pmax ${DESTDIR}/usr/mdec/bootxx_ffs \
|
|
${_SRC_TOP_}/etc/group ${_SRC_TOP_}/etc/master.passwd \
|
|
${_SRC_TOP_}/etc/netconfig ${_SRC_TOP_}/etc/protocols \
|
|
${_SRC_TOP_}/etc/services
|
|
|
|
# Use stubs to eliminate some large stuff from libc
|
|
HACKSRC= ${DISTRIBDIR}/utils/libhack
|
|
.include "${HACKSRC}/Makefile.inc"
|
|
${CRUNCHBIN}: libhack.o
|
|
|
|
|
|
realall: ${IMAGE} .WAIT ${IMAGETAR}
|
|
|
|
release: check_RELEASEDIR .WAIT ${IMAGETAR}
|
|
-mkdir -p ${RELEASEDIR}/installation/netboot
|
|
${RELINSTALL} ${IMAGETAR} ${RELEASEDIR}/installation/netboot
|
|
|
|
|
|
.include "${DISTRIBDIR}/common/Makefile.crunch"
|
|
.include "${DISTRIBDIR}/common/Makefile.makedev"
|
|
.include "${DISTRIBDIR}/common/Makefile.image"
|
|
|
|
.include <bsd.prog.mk>
|