1 # 2 # etc.i386/Makefile.inc -- i386-specific etc Makefile targets 3 # 4 # $Id: Makefile.inc,v 1.2 1994/03/31 02:22:16 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/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-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