blob: a7335ed4551336347d212ae6b88a2c0671cceb8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $OpenBSD: Makefile.inc,v 1.7 2002/05/13 07:22:43 espie Exp $
# etc.mac68k/Makefile.inc -- mac68k-specific etc Makefile targets
.ifdef DESTDIR
snap_md: bsd-generic bsd-genericsbc
(cd ${.CURDIR}/../sys/arch/mac68k/compile/GENERIC; \
tar cf - bsd \
| ${GZIP} ${GZIPFLAGS} >${DESTDIR}/snapshot/bsd-generic.tar${GZIPEXT})
(cd ${.CURDIR}/../sys/arch/mac68k/compile/GENERICSBC; \
tar cf - bsd \
| ${GZIP} ${GZIPFLAGS} >${DESTDIR}/snapshot/bsd-genericsbc.tar${GZIPEXT})
bsd-generic:
cd ${.CURDIR}/../sys/arch/mac68k/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/mac68k/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
bsd-genericsbc:
cd ${.CURDIR}/../sys/arch/mac68k/conf && config GENERICSBC
cd ${.CURDIR}/../sys/arch/mac68k/compile/GENERICSBC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
.PHONY: bsd-generic bsd-genericsbc
.endif # DESTDIR check
|