]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/boot/Makefile
MFC r281524 by andrew@: Use MACHINE in the efi loader when it is what we mean
[FreeBSD/stable/10.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>