Makefile.inc revision 1.1
1# 2# $NetBSD: Makefile.inc,v 1.1 1995/03/30 05:44:08 leo Exp $ 3# 4# etc.atari/Makefile.inc -- atari-specific etc Makefile targets 5# 6 7.ifdef DESTDIR 8snap_md: netbsd-generic netbsd-ataritt 9 cp ${.CURDIR}/../sys/arch/atari/compile/GENERIC/netbsd.gz \ 10 ${DESTDIR}/snapshot/netbsd-generic.gz 11 cp ${.CURDIR}/../sys/arch/atari/compile/ATARITT/netbsd.gz \ 12 ${DESTDIR}/snapshot/netbsd-ataritt.gz 13netbsd-generic: 14 cd ${.CURDIR}/../sys/arch/atari/conf && config.new GENERIC 15 cd ${.CURDIR}/../sys/arch/atari/compile/GENERIC && \ 16 make clean && make depend && make && gzip -9 netbsd 17 18netbsd-ataritt: 19 cd ${.CURDIR}/../sys/arch/atari/conf && config.new ATARITT 20 cd ${.CURDIR}/../sys/arch/atari/compile/ATARITT && \ 21 make clean && make depend && make && gzip -9 netbsd 22.endif # DESTDIR check 23