63d071445e
by the future qemu virt support. Differential Revision: https://reviews.freebsd.org/D2238 Reviewed by: emaste
18 lines
291 B
Makefile
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>
|