blob: e4160f11c22e460473dc0c8866a145dadec16bdd (
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
|
# $OpenBSD: Makefile.inc,v 1.10 2009/04/21 09:12:27 deraadt Exp $
kernels: bsd bsd.mp bootblocks
cp ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC/bsd \
${RELEASEDIR}/bsd
cp ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC.MP/bsd \
${RELEASEDIR}/bsd.mp
bsd:
cd ${.CURDIR}/../sys/arch/mvme88k/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && ${MAKE}
bsd.mp:
cd ${.CURDIR}/../sys/arch/mvme88k/conf && config GENERIC.MP
cd ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC.MP && \
${MAKE} clean && ${MAKE} depend && ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/* ${RELEASEDIR}/
MDEXT= bsd bsd.rd bootsd bootst bootxx installboot netboot stboot tftpboot
.PHONY: bsd bsd.mp bootblocks
|