Home | History | Annotate | Line # | Download | only in etc.sparc
Makefile.inc revision 1.6
      1 #
      2 #	etc.sparc/Makefile.inc -- sparc-specific etc Makefile targets
      3 #
      4 #	$Id: Makefile.inc,v 1.6 1994/08/12 01:19:31 deraadt Exp $
      5 
      6 .ifdef DESTDIR
      7 snap_md: netbsd netbsd.scsi3 inst
      8 	cp ${.CURDIR}/../sys/arch/sparc/compile/SPARC/netbsd \
      9 	    ${DESTDIR}/snapshot/netbsd
     10 	cp ${.CURDIR}/../sys/arch/sparc/compile/SPARC_SCSI3/netbsd \
     11 	    ${DESTDIR}/snapshot/netbsd.scsi3
     12 
     13 netbsd:
     14 	cd ${.CURDIR}/../sys/arch/sparc/conf && config.new SPARC
     15 	cd ${.CURDIR}/../sys/arch/sparc/compile/SPARC && \
     16 	    make clean && make depend && make
     17 
     18 netbsd.scsi3:
     19 	cd ${.CURDIR}/../sys/arch/sparc/conf && config.new SPARC_SCSI3
     20 	cd ${.CURDIR}/../sys/arch/sparc/compile/SPARC_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