blob: 92819d4d76c222f2ecd6a646fb9705b483f63c66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile.inc,v 1.2 1997/09/21 11:50:21 deraadt Exp $
# etc.atari/Makefile.inc -- atari-specific etc Makefile targets
.ifdef DESTDIR
snap_md: netbsd-generic netbsd-ataritt
cp ${.CURDIR}/../sys/arch/atari/compile/GENERIC/netbsd.gz \
${DESTDIR}/snapshot/netbsd-generic.gz
cp ${.CURDIR}/../sys/arch/atari/compile/ATARITT/netbsd.gz \
${DESTDIR}/snapshot/netbsd-ataritt.gz
netbsd-generic:
cd ${.CURDIR}/../sys/arch/atari/conf && config.new GENERIC
cd ${.CURDIR}/../sys/arch/atari/compile/GENERIC && \
make clean && make depend && make && gzip -9 netbsd
netbsd-ataritt:
cd ${.CURDIR}/../sys/arch/atari/conf && config.new ATARITT
cd ${.CURDIR}/../sys/arch/atari/compile/ATARITT && \
make clean && make depend && make && gzip -9 netbsd
.endif # DESTDIR check
|