Home | History | Annotate | Line # | Download | only in etc.i386
Makefile.inc revision 1.1
      1 #
      2 #	etc.i386/Makefile.inc -- i386-specific etc Makefile targets
      3 #
      4 #	$Id: Makefile.inc,v 1.1 1994/03/05 08:06:47 cgd Exp $
      5 
      6 .ifdef DESTDIR
      7 snap_md: netbsd-aha netbsd-ahbbt
      8 	cp ${.CURDIR}/../sys/arch/i386/compile/GENERICAHA/netbsd \
      9 	    ${DESTDIR}/snapshot/netbsd-aha
     10 	cp ${.CURDIR}/../sys/arch/i386/compile/GENERICAHBBT/netbsd \
     11 	    ${DESTDIR}/snapshot/netbsd-ahbbt
     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-ahbbt:
     18 	cd ${.CURDIR}/../sys/arch/i386/conf && config GENERICAHBBT
     19 	cd ${.CURDIR}/../sys/arch/i386/compile/GENERICAHBBT && \
     20 	    make clean && make depend && make
     21 .endif	# DESTDIR check
     22