blob: 87eb66e29c61d4ecce02b4f22fdc9384ba7365a0 (
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.1 2006/05/09 21:17:13 miod Exp $
# etc.aviion/Makefile.inc -- aviion-specific etc Makefile targets
.ifdef DESTDIR
snap_md: bsd-generic bootblocks distrib
cp ${.CURDIR}/../sys/arch/aviion/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
bsd-generic:
cd ${.CURDIR}/../sys/arch/aviion/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/aviion/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && ${MAKE}
bootblocks:
cp ${DESTDIR}/usr/mdec/* ${DESTDIR}/snapshot/
.PHONY: bsd-generic bootblocks
.endif # DESTDIR check
|