1 # $NetBSD: Makefile.inc,v 1.4 1998/02/11 19:19:53 gwr Exp $ 2 # 3 # etc.sun3/Makefile.inc -- sun3-specific etc Makefile targets 4 # 5 6 BIN3+= etc.sun3/ttyaction 7 8 .ifdef DESTDIR 9 snap_md: netbsd.sun3 netbsd.sun3x 10 cp ${.CURDIR}/../sys/arch/sun3/compile/GENERIC/netbsd \ 11 ${DESTDIR}/snapshot/netbsd.sun3 12 cp ${.CURDIR}/../sys/arch/sun3/compile/GENERIC3X/netbsd \ 13 ${DESTDIR}/snapshot/netbsd.sun3x 14 15 netbsd.sun3: 16 cd ${.CURDIR}/../sys/arch/sun3/conf && config GENERIC 17 cd ${.CURDIR}/../sys/arch/sun3/compile/GENERIC && \ 18 make clean && make depend && make 19 20 netbsd.sun3x: 21 cd ${.CURDIR}/../sys/arch/sun3/conf && config GENERIC3X 22 cd ${.CURDIR}/../sys/arch/sun3/compile/GENERIC3X && \ 23 make clean && make depend && make 24 25 .endif # DESTDIR check 26