diff options
Diffstat (limited to 'roms/u-boot/arch/x86/cpu/efi/Makefile')
-rw-r--r-- | roms/u-boot/arch/x86/cpu/efi/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/roms/u-boot/arch/x86/cpu/efi/Makefile b/roms/u-boot/arch/x86/cpu/efi/Makefile new file mode 100644 index 000000000..9716a4ebe --- /dev/null +++ b/roms/u-boot/arch/x86/cpu/efi/Makefile @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# Copyright (c) 2015 Google, Inc + +ifdef CONFIG_EFI_APP +obj-y += app.o +obj-y += sdram.o +endif + +ifdef CONFIG_EFI_STUB +obj-y += car.o +obj-y += payload.o +endif |