blob: 9bc8ba3c8545ca7a25a1b482473b768a1498022d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#
# etc.pmax/Makefile.inc -- pmax-specific etc Makefile targets
#
# $Id: Makefile.inc,v 1.3 1997/05/05 07:54:55 deraadt Exp $
.ifdef DESTDIR
snap_md: binutils bsd
cp ${.CURDIR}/../sys/arch/sparc/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
binutils:
cd ${DESTDIR} && tar cf - usr/*openbsd* \
| ${GZIP} ${GZIPFLAGS} > snapshot/usr.binutils.tar${GZIPEXT}
bsd:
cd ${.CURDIR}/../sys/arch/pmax/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/pmax/compile/GENERIC && \
make clean && make depend && make
cp ${.CURDIR}/../sys/arch/pmax/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
.endif # DESTDIR check
|