3be06e9652
Part of PR 28994.
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2005/01/18 12:38:45 lukem Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
|
|
|
|
IMAGE= inst.fs
|
|
IMAGESIZE= 1240k
|
|
IMAGE_RELEASEDIR= installation/floppy
|
|
|
|
MAKEFS_FLAGS= -f 10
|
|
WARNS= 1
|
|
DBG= -Os
|
|
|
|
CRUNCHBIN= ramdiskbin
|
|
LISTS= ${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst.en
|
|
MTREECONF= ${DISTRIBDIR}/common/mtree.common
|
|
IMAGEENDIAN= be
|
|
MAKEDEVTARGETS= ramdisk
|
|
IMAGEDEPENDS+= ${CRUNCHBIN} \
|
|
disktab.preinstall dot.profile dot.hdprofile \
|
|
services termcap.vt \
|
|
${DESTDIR}/usr/mdec/boot ${DESTDIR}/usr/mdec/mboot \
|
|
${DESTDIR}/usr/mdec/sdboot_ufs \
|
|
${NETBSDSRCDIR}/etc/group ${NETBSDSRCDIR}/etc/master.passwd \
|
|
${NETBSDSRCDIR}/etc/netconfig ${NETBSDSRCDIR}/etc/protocols
|
|
SMALLPROG_INET6=1
|
|
|
|
.if ${USE_INET6} != "no"
|
|
LISTS+= ${.CURDIR}/list.inet6
|
|
.endif
|
|
|
|
# Use stubs to eliminate some large stuff from libc
|
|
HACKSRC= ${DISTRIBDIR}/utils/libhack
|
|
.include "${HACKSRC}/Makefile.inc"
|
|
${CRUNCHBIN}: libhack.o
|
|
|
|
.include "${DISTRIBDIR}/common/Makefile.crunch"
|
|
.include "${DISTRIBDIR}/common/Makefile.makedev"
|
|
.include "${DISTRIBDIR}/common/Makefile.image"
|
|
|
|
release::
|
|
|
|
.include <bsd.prog.mk>
|