Home | History | Annotate | Line # | Download | only in etc.i386
Makefile.inc revision 1.3
      1 #
      2 #	etc.i386/Makefile.inc -- i386-specific etc Makefile targets
      3 #
      4 #	$Id: Makefile.inc,v 1.3 1994/03/31 10:27:17 cgd Exp $
      5 
      6 .ifdef DESTDIR
      7 snap_md: netbsd-aha netbsd-bt
      8 	cp ${.CURDIR}/../sys/arch/i386/compile/GENERICAHA/netbsd \
      9 	    ${DESTDIR}/snapshot/netbsd-aha
     10 	cp ${.CURDIR}/../sys/arch/i386/compile/GENERICBT/netbsd \
     11 	    ${DESTDIR}/snapshot/netbsd-bt
     12 netbsd-aha:
     13 	cd ${.CURDIR}/../sys/arch/i386/conf && config GENERICAHA
     14 	cd ${.CURDIR}/../sys/arch/i386/compile/GENERICAHA && \
     15 	    make clean && make depend && make
     16 
     17 netbsd-bt:
     18 	cd ${.CURDIR}/../sys/arch/i386/conf && config GENERICBT
     19 	cd ${.CURDIR}/../sys/arch/i386/compile/GENERICBT && \
     20 	    make clean && make depend && make
     21 .endif	# DESTDIR check
     22