Makefile.inc revision 1.3
1# 2# etc.amiga/Makefile.inc -- amiga-specific etc Makefile targets 3# 4# $Id: Makefile.inc,v 1.3 1994/06/14 09:10:32 chopps Exp $ 5 6.ifdef DESTDIR 7snap_md: netbsd-generic netbsd-a3000 8 cp ${.CURDIR}/../sys/arch/amiga/compile/GENERIC/netbsd.gz \ 9 ${DESTDIR}/snapshot/netbsd-generic.gz 10 cp ${.CURDIR}/../sys/arch/amiga/compile/A3000/netbsd \ 11 ${DESTDIR}/snapshot/netbsd-a3000.gz 12netbsd-generic: 13 cd ${.CURDIR}/../sys/arch/amiga/conf && config.new GENERIC 14 cd ${.CURDIR}/../sys/arch/amiga/compile/GENERIC && \ 15 make clean && make depend && make && gzip -9 $@ 16 17netbsd-a3000: 18 cd ${.CURDIR}/../sys/arch/amiga/conf && config.new A3000 19 cd ${.CURDIR}/../sys/arch/amiga/compile/A3000 && \ 20 make clean && make depend && make && gzip -9 $@ 21.endif # DESTDIR check 22