blob: 4b5195993a26b134ca9b42b636fe905997bb9f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# $NetBSD: Makefile,v 1.33 2020/04/06 11:58:10 martin Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
IMAGE= ramdisk.fs
IMAGESIZE= 4660k
MAKEFS_FLAGS+= -o density=5k
WARNS= 1
CRUNCHBIN= ramdiskbin
LISTS= ${.CURDIR}/list ${DISTRIBDIR}/common/list.sysinst
MTREECONF= ${DISTRIBDIR}/common/mtree.common
IMAGEENDIAN= le
MAKEDEVTARGETS= minimal
IMAGEDEPENDS= ${CRUNCHBIN} \
dot.profile install.sh upgrade.sh \
${DESTDIR}/usr/mdec/boot ${DESTDIR}/usr/mdec/bootxx_ffs \
${DISTRIBDIR}/utils/script-installer/dot.commonutils \
${DISTRIBDIR}/utils/script-installer/dot.instutils \
${NETBSDSRCDIR}/etc/group ${NETBSDSRCDIR}/etc/master.passwd \
${NETBSDSRCDIR}/etc/netconfig ${DISTRIBDIR}/common/protocols \
${DISTRIBDIR}/common/services
INSTNOTESDIR!= cd ${DISTRIBDIR}/notes/alpha && ${PRINTOBJDIR}
INSTALLNOTES= ${INSTNOTESDIR}/INSTALL.more
IMAGEDEPENDS+= ${INSTALLNOTES}
PARSELISTENV= INSTALLNOTES=${INSTALLNOTES:Q} TOOL_PWD_MKDB=${TOOL_PWD_MKDB:Q}
.include "${DISTRIBDIR}/common/Makefile.crunch"
.include "${DISTRIBDIR}/common/Makefile.dhcpcd"
.include "${DISTRIBDIR}/common/Makefile.makedev"
.include "${DISTRIBDIR}/common/Makefile.image"
release:
.include <bsd.prog.mk>
|