blob: 552277cda33d81fde1b2a3a5ddec665af08e8fc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile.inc,v 1.6 2006/07/27 01:58:21 deraadt Exp $
.ifdef DESTDIR
snap_md: bsd bootblocks distrib
cp ${.CURDIR}/../sys/arch/zaurus/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
bsd:
cd ${.CURDIR}/../sys/arch/zaurus/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/zaurus/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/zboot ${DESTDIR}/snapshot
cp ${DESTDIR}/usr/mdec/zbsdmod.o ${DESTDIR}/snapshot
.PHONY: bsd bootblocks
.endif # DESTDIR check
|