blob: 3215651cabe1bbe8f4e9f28049ab3b2e510a18c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $OpenBSD: Makefile.inc,v 1.8 2007/11/09 18:15:22 miod Exp $
.ifdef DESTDIR
snap_md: bsd bsd.mp bootblocks distrib
cp ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
cp ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC.MP/bsd \
${DESTDIR}/snapshot/bsd.mp
bsd:
cd ${.CURDIR}/../sys/arch/mvme88k/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && ${MAKE}
bsd.mp:
cd ${.CURDIR}/../sys/arch/mvme88k/conf && config GENERIC.MP
cd ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC.MP && \
${MAKE} clean && ${MAKE} depend && ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/* ${DESTDIR}/snapshot/
.PHONY: bsd bsd.mp bootblocks
.endif # DESTDIR check
|