blob: 6a449462547fd6e4e0e1095d94db4f5bd4c7fcb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile.inc,v 1.4 2009/04/21 09:12:26 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 xxboot
.PHONY: bootblocks bsd
|