]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/boot/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / boot / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4 .include <bsd.arch.inc.mk>
5
6 .if ${MK_FORTH} != "no"
7 # Build the add-in FORTH interpreter.
8 SUBDIR+=                ficl
9 SUBDIR+=                forth
10 .endif
11
12 # Pick the machine-dependent subdir based on the target architecture.
13 ADIR=                   ${MACHINE:S/powerpc64/powerpc/}
14 .if exists(${.CURDIR}/${ADIR}/.)
15 SUBDIR+=                ${ADIR}
16 .endif
17 .if ${MACHINE} == "amd64"
18 SUBDIR+=                i386
19 .endif
20
21 .include <bsd.subdir.mk>