blob: 575f318824b840f06da4a5cf88e10832ccc383b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: Makefile.inc,v 1.3 2010/02/23 11:01:06 otto Exp $
kernels: bsd bootblocks
cp ${.CURDIR}/../sys/arch/loongson/compile/GENERIC/bsd \
${RELEASEDIR}/bsd
bsd:
cd ${.CURDIR}/../sys/arch/loongson/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/loongson/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/boot ${RELEASEDIR}
MDEXT= bsd bsd.rd boot miniroot${OSrev}.fs
.PHONY: bsd bootblocks
|