blob: 28dceca23f407d277a7ee54c402f627054f1df7e (
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
26
27
28
|
# $OpenBSD: Makefile.inc,v 1.15 2011/04/15 03:11:38 deraadt Exp $
kernels: bsd bsd.mp bootblocks
cp ${.CURDIR}/../sys/arch/macppc/compile/GENERIC/bsd \
${RELEASEDIR}/bsd
cp ${.CURDIR}/../sys/arch/macppc/compile/GENERIC.MP/bsd \
${RELEASEDIR}/bsd.mp
bsd:
cd ${.CURDIR}/../sys/arch/macppc/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/macppc/compile/GENERIC && \
${MAKE} clean && exec ${MAKE}
bsd.mp:
cd ${.CURDIR}/../sys/arch/macppc/conf && config GENERIC.MP
cd ${.CURDIR}/../sys/arch/macppc/compile/GENERIC.MP && \
${MAKE} clean && exec ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/ofwboot ${RELEASEDIR}/ofwboot
cp ${DESTDIR}/usr/mdec/bsd.tbxi ${RELEASEDIR}/bsd.tbxi
cp ${DESTDIR}/usr/mdec/boot.mac ${RELEASEDIR}/boot.mac
MDEXT= bsd bsd.mp bsd.rd cd${OSrev}.iso \
ofwboot bsd.tbxi boot.mac
.PHONY: bsd bsd.mp bootblocks
|