blob: 245d8a654034a70ab2ae2a64d12ea011755cad86 (
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
|
#
# etc.sparc/Makefile.inc -- sparc-specific etc Makefile targets
#
# $Id: Makefile.inc,v 1.1 1995/10/18 08:38:01 deraadt Exp $
.ifdef DESTDIR
snap_md: netbsd netbsd.scsi3 inst
cp ${.CURDIR}/../sys/arch/sparc/compile/GENERIC/netbsd \
${DESTDIR}/snapshot/netbsd
cp ${.CURDIR}/../sys/arch/sparc/compile/GENERIC_SCSI3/netbsd \
${DESTDIR}/snapshot/netbsd.scsi3
netbsd:
cd ${.CURDIR}/../sys/arch/sparc/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/sparc/compile/GENERIC && \
make clean && make depend && make
netbsd.scsi3:
cd ${.CURDIR}/../sys/arch/sparc/conf && config GENERIC_SCSI3
cd ${.CURDIR}/../sys/arch/sparc/compile/GENERIC_SCSI3 && \
make clean && make depend && make
inst:
cp ${.CURDIR}/etc.sparc/README ${DESTDIR}/snapshot/README
cp ${.CURDIR}/etc.sparc/install.sh ${DESTDIR}/snapshot/install.sh
.endif # DESTDIR check
|