Home | History | Annotate | Line # | Download | only in etc.sparc
Makefile.inc revision 1.9
      1 #	$NetBSD: Makefile.inc,v 1.9 1997/09/20 03:09:18 mikel Exp $
      2 #
      3 #	etc.sparc/Makefile.inc -- sparc-specific etc Makefile targets
      4 #
      5 
      6 .ifdef DESTDIR
      7 snap_md: netbsd netbsd.scsi3
      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 .endif	# DESTDIR check
     24