blob: 468c468af6ce23df8f1ec7bbb681717e9dd95b48 (
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
26
27
28
|
# $NetBSD: Makefile.inc,v 1.2 1996/03/22 05:14:27 scottr Exp $
#
# etc.hp300/Makefile.inc -- hp300-specific etc Makefile targets
.ifdef DESTDIR
snap_md: netbsd-gen.gz netbsd-dl.gz
netbsd-gen:
cd ${.CURDIR}/../sys/arch/hp300/conf && config.old GENERIC
cd ${.CURDIR}/../sys/arch/hp300/compile/GENERIC && \
make clean && make depend && make
cp ${.CURDIR}/../sys/arch/hp300/compile/GENERIC/netbsd \
${DESTDIR}/snapshot/netbsd-gen
netbsd-dl:
cd ${.CURDIR}/../sys/arch/hp300/conf && config.old DISKLESS
cd ${.CURDIR}/../sys/arch/hp300/compile/DISKLESS && \
make clean && make depend && make
cp ${.CURDIR}/../sys/arch/hp300/compile/DISKLESS/netbsd \
${DESTDIR}/snapshot/netbsd-dl
netbsd-gen.gz: netbsd-gen
gzip -f9 ${DESTDIR}/snapshot/netbsd-gen
netbsd-dl.gz: netbsd-dl
gzip -f9 ${DESTDIR}/snapshot/netbsd-dl
.endif # DESTDIR check
|