blob: a2c346c66ddc720ee3b0bd3b34d6fa415b300ac9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile.inc,v 1.2 1996/05/21 15:15:18 oki Exp $
#
# etc.x68k/Makefile.inc -- x68k-specific etc Makefile targets
#
.ifdef DESTDIR
LOCALTIME= Japan
snap_md: netbsd-generic netbsd-all
cp ${.CURDIR}/../sys/arch/x68k/compile/GENERIC/netbsd.gz \
${DESTDIR}/snapshot/netbsd-generic.gz
cp ${.CURDIR}/../sys/arch/x68k/compile/ALL/netbsd.gz \
${DESTDIR}/snapshot/netbsd-all.gz
netbsd-generic:
cd ${.CURDIR}/../sys/arch/x68k/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/x68k/compile/GENERIC && \
make clean && make depend && make && gzip -9 netbsd
netbsd-all:
cd ${.CURDIR}/../sys/arch/x68k/conf && config ALL
cd ${.CURDIR}/../sys/arch/x68k/compile/ALL && \
make clean && make depend && make && gzip -9 netbsd
.endif # DESTDIR check
|