blob: f0b69a9f2d918f881f61fe6694735a34c94cbd12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile.inc,v 1.4 2003/03/28 23:20:51 mickey Exp $
.ifdef DESTDIR
snap_md: boot bsd distrib
cp ${.CURDIR}/../sys/arch/hppa/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
bsd:
cd ${.CURDIR}/../sys/arch/hppa/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/hppa/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
boot:
cp ${DESTDIR}/usr/mdec/xxboot ${DESTDIR}/snapshot
.PHONY: bsd
.endif # DESTDIR check
|