blob: 19cc741cfee48b463bedf9ec97a62a92f1a54204 (
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
|
# $NetBSD: Makefile,v 1.3 2008/02/05 19:05:40 garbled Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
# create ${RAMDISK_*} variables
#
RAMDISKS= RAMDISK ramdisk
.for V F in ${RAMDISKS}
${V}DIR!= cd ${.CURDIR}/../ramdisks/${F} && ${PRINTOBJDIR}
${V}= ${${V}DIR}/${F}.fs
.endfor
MDSETTARGETS= INSTALL ${RAMDISK} -
MDSET_RELEASEDIR= binary/kernel
# do not strip kernels, there's no space constraints here.
MDSET_NOSTRIP.netbsd-INSTALL=
MDSET_NOSYMBOLS.netbsd-INSTALL=
.include "${DISTRIBDIR}/common/Makefile.mdset"
.include <bsd.prog.mk>
|