blob: b3b0517a3f12ac65a26debdc6ca124bbe8197f8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $OpenBSD: Makefile.inc,v 1.3 2005/01/10 00:28:15 deraadt Exp $
# etc.zaurus/Makefile.inc -- zaurus-specific etc Makefile targets
.ifdef DESTDIR
snap_md: bsd notes 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}
notes:
cp ${.CURDIR}/etc.i386/INSTALL.* ${DESTDIR}/snapshot
bootblocks:
cp ${DESTDIR}/usr/mdec/zboot ${DESTDIR}/snapshot
cp ${DESTDIR}/usr/mdec/zbsdmod.o ${DESTDIR}/snapshot
.PHONY: bsd notes bootblocks
.endif # DESTDIR check
|