blob: dabfdfb72dcc59b7073f417362437611edbaa099 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $OpenBSD: Makefile.inc,v 1.10 2006/07/27 02:53:55 deraadt Exp $
.ifdef DESTDIR
snap_md: bsd bootblocks distrib
cp ${.CURDIR}/../sys/arch/mac68k/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
printf "disable ncrscsi\nenable sbc\nquit" | config -e \
-o ${DESTDIR}/snapshot/bsdsbc ${DESTDIR}/snapshot/bsd
bsd:
cd ${.CURDIR}/../sys/arch/mac68k/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/mac68k/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
bootblocks:
#none needed
.PHONY: bsd bootblocks
.endif # DESTDIR check
|