blob: 41b56c093524298aebd501189e046fbf95ce692a (
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
26
27
28
29
30
|
# $OpenBSD: Makefile.inc,v 1.9 1998/09/23 07:27:06 todd Exp $
# etc.sparc/Makefile.inc -- sparc-specific etc Makefile targets
.ifdef DESTDIR
snap_md: bsd bsd.scsi3 bootblocks distrib
cp ${.CURDIR}/../sys/arch/sparc/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
cp ${.CURDIR}/../sys/arch/sparc/compile/GENERIC_SCSI3/bsd \
${DESTDIR}/snapshot/bsd.scsi3
bsd:
cd ${.CURDIR}/../sys/arch/sparc/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/sparc/compile/GENERIC && \
make clean && make depend && make
bsd.scsi3:
cd ${.CURDIR}/../sys/arch/sparc/conf && config GENERIC_SCSI3
cd ${.CURDIR}/../sys/arch/sparc/compile/GENERIC_SCSI3 && \
make clean && make depend && make
bootblocks:
cp ${DESTDIR}/usr/mdec/*boot* ${DESTDIR}/snapshot
${DESTDIR}/usr/mdec/binstall net /tmp && \
mv /tmp/boot.sparc.openbsd ${DESTDIR}/snapshot/boot.net
distrib:
cd ${.CURDIR}/../distrib && make cleandir && \
make && make install
.endif # DESTDIR check
|