blob: 3cb4902bef43f6702c3652881553b9dccee9ff00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile.inc,v 1.13 2011/04/15 03:11:38 deraadt Exp $
kernels: bsd bootblocks
cp ${.CURDIR}/../sys/arch/mvme68k/compile/GENERIC/bsd \
${RELEASEDIR}/bsd
bsd:
cd ${.CURDIR}/../sys/arch/mvme68k/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/mvme68k/compile/GENERIC && \
${MAKE} clean && exec ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/* ${RELEASEDIR}/
MDEXT= bsd bsd.rd \
installboot netboot rboot sboot stboot bootsd bootst bootxx
.PHONY: bsd bootblocks
|