mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 10:24:49 +00:00

This test doesn't belong at the top level. Move it into the common/ directory, to match its implementation. Rename it to drop the unnecessary _ut suffix. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Tom Rini <trini@konsulko.com> # rpi_3, rpi_4, rpi_arm64, am64x_evm_a53, am64-sk
10 lines
316 B
Makefile
10 lines
316 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
obj-y += cmd_ut_common.o
|
|
obj-$(CONFIG_AUTOBOOT) += test_autoboot.o
|
|
ifneq ($(CONFIG_$(XPL_)BLOBLIST),)
|
|
obj-$(CONFIG_$(XPL_)CMDLINE) += bloblist.o
|
|
endif
|
|
obj-$(CONFIG_CYCLIC) += cyclic.o
|
|
obj-$(CONFIG_EVENT_DYNAMIC) += event.o
|
|
obj-y += cread.o
|
|
obj-$(CONFIG_$(XPL_)CMDLINE) += print.o
|