1 # $NetBSD: Makefile.inc,v 1.2 1997/09/20 03:05:39 mikel Exp $ 2 # 3 # etc.sun3/Makefile.inc -- sun3-specific etc Makefile targets 4 # 5 6 .ifdef DESTDIR 7 snap_md: netbsd-gen netbsd-dl 8 9 netbsd-gen: 10 cd ${.CURDIR}/../sys/arch/sun3/compile/GENERIC && make 11 gzip -9 < ${.CURDIR}/../sys/arch/sun3/compile/GENERIC/netbsd \ 12 > ${DESTDIR}/snapshot/netbsd-gen.gz 13 14 netbsd-dl: 15 cd ${.CURDIR}/../sys/arch/sun3/compile/DISKLESS && make 16 gzip -9 < ${.CURDIR}/../sys/arch/sun3/compile/DISKLESS/netbsd \ 17 > ${DESTDIR}/snapshot/netbsd-dl.gz 18 19 .endif # DESTDIR check 20