blob: 017fa2cff6f33498fbf5e6c1c1d62fa0e48d67f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: Makefile.inc,v 1.12 1997/09/21 11:50:15 deraadt Exp $
# etc.amiga/Makefile.inc -- amiga-specific etc Makefile targets
.ifdef DESTDIR
snap_md: bsd distrib
bsd:
# The GENERIC kernel is built as a side-effect of the miniroot
cp ${.CURDIR}/../sys/arch/amiga/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
distrib:
cd ${.CURDIR}/../distrib && \
${MAKE} cleandir && ${MAKE} && ${MAKE} install
.endif # DESTDIR check
|