1 # 2 # etc.sparc/Makefile.inc -- sparc-specific etc Makefile targets 3 # 4 # $Id: Makefile.inc,v 1.7 1995/05/12 08:51:55 pk Exp $ 5 6 .ifdef DESTDIR 7 snap_md: netbsd netbsd.scsi3 inst 8 cp ${.CURDIR}/../sys/arch/sparc/compile/GENERIC/netbsd \ 9 ${DESTDIR}/snapshot/netbsd 10 cp ${.CURDIR}/../sys/arch/sparc/compile/GENERIC_SCSI3/netbsd \ 11 ${DESTDIR}/snapshot/netbsd.scsi3 12 13 netbsd: 14 cd ${.CURDIR}/../sys/arch/sparc/conf && config GENERIC 15 cd ${.CURDIR}/../sys/arch/sparc/compile/GENERIC && \ 16 make clean && make depend && make 17 18 netbsd.scsi3: 19 cd ${.CURDIR}/../sys/arch/sparc/conf && config GENERIC_SCSI3 20 cd ${.CURDIR}/../sys/arch/sparc/compile/GENERIC_SCSI3 && \ 21 make clean && make depend && make 22 23 inst: 24 cp ${.CURDIR}/etc.sparc/README ${DESTDIR}/snapshot/README 25 cp ${.CURDIR}/etc.sparc/install.sh ${DESTDIR}/snapshot/install.sh 26 27 .endif # DESTDIR check 28