]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/boot/efi/Makefile
Update ELF Tool Chain to upstream rev 3400
[FreeBSD/FreeBSD.git] / sys / boot / efi / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 # In-tree GCC does not support __attribute__((ms_abi)).
6 .if ${COMPILER_TYPE} != "gcc"
7
8 .if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm"
9 .if ${MK_FDT} != "no"
10 SUBDIR+=        fdt
11 .endif
12 .endif
13
14 .if ${MACHINE_CPUARCH} == "aarch64" || \
15     ${MACHINE_CPUARCH} == "amd64" || \
16     ${MACHINE_CPUARCH} == "arm"
17 SUBDIR+=        libefi loader boot1
18 .endif
19
20 .endif # ${COMPILER_TYPE} != "gcc"
21
22 .include <bsd.subdir.mk>
23