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