Provide a way to click on an object and check that the expected action resulted. Put it in a common file so it can be used by cedit and expo tests. Tidy up the include-order in both cedit and expo. Signed-off-by: Simon Glass <sjg@chromium.org>
25 lines
606 B
Makefile
25 lines
606 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2021 Google LLC
|
|
|
|
ifdef CONFIG_UT_BOOTSTD
|
|
obj-$(CONFIG_BOOTSTD) += bootdev.o bootstd_common.o bootflow.o bootmeth.o
|
|
obj-$(CONFIG_FIT) += image.o
|
|
|
|
obj-$(CONFIG_EXPO) += expo.o expo_common.o
|
|
obj-$(CONFIG_CEDIT) += cedit.o expo_common.o
|
|
endif
|
|
|
|
ifdef CONFIG_SANDBOX
|
|
obj-$(CONFIG_$(PHASE_)CMDLINE) += bootm.o
|
|
endif
|
|
obj-$(CONFIG_MEASURED_BOOT) += measurement.o
|
|
|
|
ifdef CONFIG_OF_LIVE
|
|
obj-$(CONFIG_BOOTMETH_VBE_SIMPLE) += vbe_simple.o
|
|
endif
|
|
obj-$(CONFIG_BOOTMETH_VBE) += vbe_fixup.o
|
|
obj-$(CONFIG_BOOTMETH_VBE_ABREC_OS) += vbe_abrec_os.o
|
|
|
|
obj-$(CONFIG_UPL) += upl.o
|