blob: 91e5f62185dfbb6cdd026101cbccfbf00347f8ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile.inc,v 1.6 2011/01/14 17:18:50 deraadt Exp $
kernels: bootblocks bsd
cp ${.CURDIR}/../sys/arch/hppa64/compile/GENERIC/bsd \
${RELEASEDIR}/bsd
bsd:
cd ${.CURDIR}/../sys/arch/hppa64/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/hppa64/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/xxboot ${RELEASEDIR}
MDEXT= bsd bsd.rd cd${OSrev}.iso lif${OSrev}.fs \
xxboot
.PHONY: bootblocks bsd
|