blob: ebc96aad00434f28fa285239e5e890b08ee99208 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile.inc,v 1.3 2003/01/16 19:13:36 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
|