blob: 041511597d665a6c6f39fd5947ccc418e1212f23 (
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
|
# $OpenBSD: Makefile.inc,v 1.12 2010/08/17 19:17:14 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.mp bsd.rd \
bootsd bootst bootxx installboot netboot stboot tftpboot
.PHONY: bsd bsd.mp bootblocks
|