blob: 34289402030b240d0a626375bc87690dd40a8002 (
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
|
# $OpenBSD: Makefile.inc,v 1.12 2001/03/05 14:32:10 deraadt Exp $
# etc.alpha/Makefile.inc -- alpha-specific etc Makefile targets
.ifdef DESTDIR
snap_md: bsd distrib boot
bsd:
cd ${.CURDIR}/../sys/arch/alpha/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/alpha/compile/GENERIC && \
make clean && make depend && make
cp ${.CURDIR}/../sys/arch/alpha/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
distrib:
cd ${.CURDIR}/../distrib && \
make cleandir && make && make install
boot:
cp ${DESTDIR}/usr/mdec/boot ${DESTDIR}/snapshot
cp ${DESTDIR}/usr/mdec/bootxx ${DESTDIR}/snapshot
cp ${DESTDIR}/usr/mdec/netboot ${DESTDIR}/snapshot
.endif # DESTDIR check
|