blob: e6822d99e3875c84404d394417b898fa9507b5fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile.inc,v 1.6 2009/04/21 09:12:27 deraadt Exp $
kernels: bsd bootblocks
cp ${.CURDIR}/../sys/arch/mvmeppc/compile/GENERIC/bsd \
${RELEASEDIR}/bsd
bsd:
cd ${.CURDIR}/../sys/arch/mvmeppc/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/mvmeppc/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/bootxx ${RELEASEDIR}/bootxx
cp ${DESTDIR}/usr/mdec/bootsd ${RELEASEDIR}/bootsd
cp ${DESTDIR}/usr/mdec/installboot ${RELEASEDIR}/installboot
MDEXT= bsd bsd.rd bootxx bootsd installboot
.PHONY: bsd bootblocks
|