1# 2# (C) Copyright 2016 Alexander Graf 3# 4# SPDX-License-Identifier: GPL-2.0+ 5# 6 7# This file only gets included with CONFIG_EFI_LOADER set, so all 8# object inclusion implicitly depends on it 9 10CFLAGS_helloworld.o := $(CFLAGS_EFI) -Os -ffreestanding 11CFLAGS_REMOVE_helloworld.o := $(CFLAGS_NON_EFI) -Os 12 13ifneq ($(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),) 14always += helloworld.efi 15endif 16 17obj-$(CONFIG_CMD_BOOTEFI_HELLO) += helloworld_efi.o 18obj-y += efi_image_loader.o efi_boottime.o efi_runtime.o efi_console.o 19obj-y += efi_memory.o efi_device_path_to_text.o efi_device_path.o 20obj-y += efi_file.o efi_variable.o efi_bootmgr.o efi_watchdog.o 21obj-$(CONFIG_LCD) += efi_gop.o 22obj-$(CONFIG_DM_VIDEO) += efi_gop.o 23obj-$(CONFIG_PARTITIONS) += efi_disk.o 24obj-$(CONFIG_NET) += efi_net.o 25obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += efi_smbios.o 26