blob: 66d85936d95a3fa4df2e060f91605084cb1298c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile.inc,v 1.22 2011/04/15 03:11:38 deraadt Exp $
kernels: bsd bootblocks
cp ${.CURDIR}/../sys/arch/hp300/compile/GENERIC/bsd \
${RELEASEDIR}/bsd
bsd:
cd ${.CURDIR}/../sys/arch/hp300/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/hp300/compile/GENERIC && \
${MAKE} clean && exec ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/uboot.lif ${RELEASEDIR}/SYS_UBOOT
cp ${DESTDIR}/usr/mdec/cdboot.lif ${RELEASEDIR}/SYS_CDBOOT
MDEXT= bsd bsd.rd SYS_UBOOT SYS_CDBOOT
.PHONY: bsd bootblocks
|