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