blob: 56c493caca88f19479c0deddeeb5ee70c8ba5dfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#
# etc.amiga/Makefile.inc -- amiga-specific etc Makefile targets
#
# $OpenBSD: Makefile.inc,v 1.11 1997/09/18 17:17:35 deraadt Exp $
# $NetBSD: Makefile.inc,v 1.7 1995/11/28 05:40:21 jtc Exp $
.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
|