blob: 53973dc5ada62f81c206806953480becc5790885 (
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.10 2011/01/14 17:18:50 deraadt Exp $
kernels: bootblocks bsd bsd.mp
cp ${.CURDIR}/../sys/arch/hppa/compile/GENERIC/bsd \
${RELEASEDIR}/bsd
cp ${.CURDIR}/../sys/arch/hppa/compile/GENERIC.MP/bsd \
${RELEASEDIR}/bsd.mp
bsd:
cd ${.CURDIR}/../sys/arch/hppa/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/hppa/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
bsd.mp:
cd ${.CURDIR}/../sys/arch/hppa/conf && config GENERIC.MP
cd ${.CURDIR}/../sys/arch/hppa/compile/GENERIC.MP && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/xxboot ${RELEASEDIR}
MDEXT= bsd bsd.mp bsd.rd cd${OSrev}.iso lif${OSrev}.fs \
xxboot
.PHONY: bsd bsd.mp bootblocks
|