Makefile.inc revision 1.2
1# 2# $NetBSD: Makefile.inc,v 1.2 1997/10/29 10:36:24 leo Exp $ 3# 4# etc.atari/Makefile.inc -- atari-specific etc Makefile targets 5# 6 7.ifdef DESTDIR 8snap_md: netbsd-ataritt netbsd-boot netbsd-bootx netbsd-generic netbsd-hades 9 cp ${.CURDIR}/../sys/arch/atari/compile/ATARITT/netbsd.gz \ 10 ${DESTDIR}/snapshot/netbsd-ataritt.gz 11 cp ${.CURDIR}/../sys/arch/atari/compile/BOOT/netbsd.gz \ 12 ${DESTDIR}/snapshot/netbsd-boot.gz 13 cp ${.CURDIR}/../sys/arch/atari/compile/BOOTX/netbsd.gz \ 14 ${DESTDIR}/snapshot/netbsd-bootx.gz 15 cp ${.CURDIR}/../sys/arch/atari/compile/GENERIC/netbsd.gz \ 16 ${DESTDIR}/snapshot/netbsd-generic.gz 17 cp ${.CURDIR}/../sys/arch/atari/compile/HADES/netbsd.gz \ 18 ${DESTDIR}/snapshot/netbsd-hades.gz 19 20netbsd-ataritt: 21 cd ${.CURDIR}/../sys/arch/atari/conf && config ATARITT 22 cd ${.CURDIR}/../sys/arch/atari/compile/ATARITT && \ 23 make clean && make depend && make && gzip -9 netbsd 24 25netbsd-boot: 26 cd ${.CURDIR}/../sys/arch/atari/conf && config BOOT 27 cd ${.CURDIR}/../sys/arch/atari/compile/BOOT && \ 28 make clean && make depend && make && gzip -9 netbsd 29 30netbsd-bootx: 31 cd ${.CURDIR}/../sys/arch/atari/conf && config BOOTX 32 cd ${.CURDIR}/../sys/arch/atari/compile/BOOTX && \ 33 make clean && make depend && make && gzip -9 netbsd 34 35netbsd-generic: 36 cd ${.CURDIR}/../sys/arch/atari/conf && config GENERIC 37 cd ${.CURDIR}/../sys/arch/atari/compile/GENERIC && \ 38 make clean && make depend && make && gzip -9 netbsd 39 40netbsd-hades: 41 cd ${.CURDIR}/../sys/arch/atari/conf && config HADES 42 cd ${.CURDIR}/../sys/arch/atari/compile/HADES && \ 43 make clean && make depend && make && gzip -9 netbsd 44 45.endif # DESTDIR check 46