Home | History | Annotate | Line # | Download | only in etc.sparc
Makefile.inc revision 1.1
      1 #
      2 #	etc.sparc/Makefile.inc -- sparc-specific etc Makefile targets
      3 #
      4 #	$Id: Makefile.inc,v 1.1 1994/04/12 07:48:20 deraadt Exp $
      5 
      6 .ifdef DESTDIR
      7 snap_md: netbsd-sd0 netbsd-sd1
      8 	cp ${.CURDIR}/../sys/arch/sparc/compile/TDR/netbsd \
      9 	    ${DESTDIR}/snapshot/netbsd-sd1
     10 	cp ${.CURDIR}/../sys/arch/sparc/compile/TDR2/netbsd \
     11 	    ${DESTDIR}/snapshot/netbsd-sd0
     12 
     13 netbsd-sd1:
     14 	cd ${.CURDIR}/../sys/arch/sparc/conf && config.new TDR
     15 	cd ${.CURDIR}/../sys/arch/sparc/compile/TDR && \
     16 	    make clean && make depend && make
     17 
     18 netbsd-sd0:
     19 	cd ${.CURDIR}/../sys/arch/sparc/conf && config.new TDR2
     20 	cd ${.CURDIR}/../sys/arch/sparc/compile/TDR2 && \
     21 	    make clean && make depend && make
     22 .endif	# DESTDIR check
     23