blob: a7cc5404550d1f0e95d8da6b10aa3e69a498276b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#
# etc.alpha/Makefile.inc -- alpha-specific etc Makefile targets
#
# $Id: Makefile.inc,v 1.2 1997/01/21 12:02:52 graichen Exp $
.ifdef DESTDIR
# XXX - bsd will come then we have a GENERIC kernel
snap_md: binutils
binutils:
cd ${DESTDIR} && tar cf - usr/*openbsd* \
| ${GZIP} ${GZIPFLAGS} > snapshot/usr.binutils.tar${GZIPEXT}
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
.endif # DESTDIR check
|