freebsd-skq/sys/boot/efi/Makefile
Andrew Turner 63d071445e Add support to the efi boot1 and loader for 32-bit ARM. This will be used
by the future qemu virt support.

Differential Revision:	https://reviews.freebsd.org/D2238
Reviewed by:	emaste
2015-04-06 15:50:20 +00:00

18 lines
291 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
SUBDIR= libefi
.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm"
.if ${MK_FDT} != "no"
SUBDIR+= fdt
.endif
.endif
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "arm"
SUBDIR+= loader boot1
.endif
.include <bsd.subdir.mk>