1 # 2 # etc.sun3/Makefile.inc -- sun3-specific etc Makefile targets 3 # 4 # $Id: Makefile.inc,v 1.1 1995/07/07 16:05:20 gwr Exp $ 5 6 .ifdef DESTDIR 7 snap_md: netbsd-gen netbsd-dl 8 cp -p ${.CURDIR}/etc.sun3/README ${DESTDIR}/snapshot/README 9 10 netbsd-gen: 11 cd ${.CURDIR}/../sys/arch/sun3/compile/GENERIC && make 12 gzip -9 < ${.CURDIR}/../sys/arch/sun3/compile/GENERIC/netbsd \ 13 > ${DESTDIR}/snapshot/netbsd-gen.gz 14 15 netbsd-dl: 16 cd ${.CURDIR}/../sys/arch/sun3/compile/DISKLESS && make 17 gzip -9 < ${.CURDIR}/../sys/arch/sun3/compile/DISKLESS/netbsd \ 18 > ${DESTDIR}/snapshot/netbsd-dl.gz 19 20 .endif # DESTDIR check 21