# $OpenBSD: Makefile.inc,v 1.7 2006/07/27 02:53:55 deraadt Exp $
|
|
|
|
.ifdef DESTDIR
|
|
snap_md: bsd bootblocks distrib
|
|
cp ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC/bsd \
|
|
${DESTDIR}/snapshot/bsd
|
|
|
|
bsd:
|
|
cd ${.CURDIR}/../sys/arch/mvme88k/conf && config GENERIC
|
|
cd ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC && \
|
|
${MAKE} clean && ${MAKE} depend && ${MAKE}
|
|
|
|
bootblocks:
|
|
cp ${DESTDIR}/usr/mdec/* ${DESTDIR}/snapshot/
|
|
|
|
.PHONY: bsd bootblocks
|
|
|
|
.endif # DESTDIR check
|