mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
In preparation for supporting 64-bit machines with 32-bit UEFI firmware, add a 32-bit variant of libefi since we need to compile both the 64-bit version and the 32-bit version at the same time. Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/1098 (cherry picked from commit f0d5b1bdf075c68ddb1dcfbc5a0eda0214510b5b)
18 lines
321 B
Makefile
18 lines
321 B
Makefile
|
|
NO_OBJ=t
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
SUBDIR.yes+= libefi
|
|
SUBDIR.${MK_LOADER_IA32}+= libefi32
|
|
SUBDIR.${MK_FDT}+= fdt
|
|
SUBDIR.yes+= .WAIT
|
|
|
|
SUBDIR.yes+= boot1 gptboot
|
|
|
|
SUBDIR.${MK_FORTH}+= loader_4th
|
|
SUBDIR.${MK_LOADER_LUA}+= loader_lua
|
|
SUBDIR.${MK_LOADER_IA32}+= loader_ia32
|
|
SUBDIR.yes+= loader_simp
|
|
|
|
.include <bsd.subdir.mk>
|