1995-03-30 09:44:08 +04:00
|
|
|
#
|
1997-10-29 13:36:24 +03:00
|
|
|
# $NetBSD: Makefile.inc,v 1.2 1997/10/29 10:36:24 leo Exp $
|
1995-03-30 09:44:08 +04:00
|
|
|
#
|
|
|
|
# etc.atari/Makefile.inc -- atari-specific etc Makefile targets
|
|
|
|
#
|
|
|
|
|
|
|
|
.ifdef DESTDIR
|
1997-10-29 13:36:24 +03:00
|
|
|
snap_md: netbsd-ataritt netbsd-boot netbsd-bootx netbsd-generic netbsd-hades
|
1995-03-30 09:44:08 +04:00
|
|
|
cp ${.CURDIR}/../sys/arch/atari/compile/ATARITT/netbsd.gz \
|
|
|
|
${DESTDIR}/snapshot/netbsd-ataritt.gz
|
1997-10-29 13:36:24 +03:00
|
|
|
cp ${.CURDIR}/../sys/arch/atari/compile/BOOT/netbsd.gz \
|
|
|
|
${DESTDIR}/snapshot/netbsd-boot.gz
|
|
|
|
cp ${.CURDIR}/../sys/arch/atari/compile/BOOTX/netbsd.gz \
|
|
|
|
${DESTDIR}/snapshot/netbsd-bootx.gz
|
|
|
|
cp ${.CURDIR}/../sys/arch/atari/compile/GENERIC/netbsd.gz \
|
|
|
|
${DESTDIR}/snapshot/netbsd-generic.gz
|
|
|
|
cp ${.CURDIR}/../sys/arch/atari/compile/HADES/netbsd.gz \
|
|
|
|
${DESTDIR}/snapshot/netbsd-hades.gz
|
|
|
|
|
|
|
|
netbsd-ataritt:
|
|
|
|
cd ${.CURDIR}/../sys/arch/atari/conf && config ATARITT
|
|
|
|
cd ${.CURDIR}/../sys/arch/atari/compile/ATARITT && \
|
|
|
|
make clean && make depend && make && gzip -9 netbsd
|
|
|
|
|
|
|
|
netbsd-boot:
|
|
|
|
cd ${.CURDIR}/../sys/arch/atari/conf && config BOOT
|
|
|
|
cd ${.CURDIR}/../sys/arch/atari/compile/BOOT && \
|
|
|
|
make clean && make depend && make && gzip -9 netbsd
|
|
|
|
|
|
|
|
netbsd-bootx:
|
|
|
|
cd ${.CURDIR}/../sys/arch/atari/conf && config BOOTX
|
|
|
|
cd ${.CURDIR}/../sys/arch/atari/compile/BOOTX && \
|
|
|
|
make clean && make depend && make && gzip -9 netbsd
|
|
|
|
|
1995-03-30 09:44:08 +04:00
|
|
|
netbsd-generic:
|
1997-10-29 13:36:24 +03:00
|
|
|
cd ${.CURDIR}/../sys/arch/atari/conf && config GENERIC
|
1995-03-30 09:44:08 +04:00
|
|
|
cd ${.CURDIR}/../sys/arch/atari/compile/GENERIC && \
|
|
|
|
make clean && make depend && make && gzip -9 netbsd
|
|
|
|
|
1997-10-29 13:36:24 +03:00
|
|
|
netbsd-hades:
|
|
|
|
cd ${.CURDIR}/../sys/arch/atari/conf && config HADES
|
|
|
|
cd ${.CURDIR}/../sys/arch/atari/compile/HADES && \
|
1995-03-30 09:44:08 +04:00
|
|
|
make clean && make depend && make && gzip -9 netbsd
|
1997-10-29 13:36:24 +03:00
|
|
|
|
1995-03-30 09:44:08 +04:00
|
|
|
.endif # DESTDIR check
|