1 # $NetBSD: Makefile.inc,v 1.8 1996/10/16 02:25:08 perry Exp $ 2 # 3 # etc.i386/Makefile.inc -- i386-specific etc Makefile targets 4 # 5 6 .ifdef DESTDIR 7 snap_md: netbsd-adp netbsd-other 8 9 netbsd-adp: 10 cd ${.CURDIR}/../sys/arch/i386/conf && config GENERICADP 11 cd ${.CURDIR}/../sys/arch/i386/compile/GENERICADP && \ 12 make clean && make depend && make 13 cp ${.CURDIR}/../sys/arch/i386/compile/GENERICADP/netbsd \ 14 ${DESTDIR}/snapshot/netbsd-adp 15 16 netbsd-other: 17 cd ${.CURDIR}/../sys/arch/i386/conf && config GENERICOTHER 18 cd ${.CURDIR}/../sys/arch/i386/compile/GENERICOTHER && \ 19 make clean && make depend && make 20 cp ${.CURDIR}/../sys/arch/i386/compile/GENERICOTHER/netbsd \ 21 ${DESTDIR}/snapshot/netbsd-other 22 23 .endif # DESTDIR check 24