mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-01-09 10:42:01 +01:00
Makefile already checks CONFIG_UNIT_TEST. There is point in checking it in test/Makefile again. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
29 lines
592 B
Makefile
29 lines
592 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2012 The Chromium Authors
|
|
|
|
obj-y += test-main.o
|
|
|
|
obj-$(CONFIG_$(PHASE_)CMDLINE) += cmd/
|
|
obj-$(CONFIG_$(PHASE_)CMDLINE) += cmd_ut.o
|
|
obj-y += dm/
|
|
obj-$(CONFIG_FUZZ) += fuzz/
|
|
ifndef CONFIG_SANDBOX_VPL
|
|
obj-y += lib/
|
|
endif
|
|
ifneq ($(CONFIG_HUSH_PARSER),)
|
|
obj-$(CONFIG_$(PHASE_)CMDLINE) += hush/
|
|
endif
|
|
obj-$(CONFIG_UT_OPTEE) += optee/
|
|
obj-y += ut.o
|
|
|
|
ifeq ($(CONFIG_XPL_BUILD),)
|
|
obj-y += boot/
|
|
obj-y += common/
|
|
obj-$(CONFIG_UT_ENV) += env/
|
|
obj-$(CONFIG_UT_FDT_OVERLAY) += fdt_overlay/
|
|
obj-y += log/
|
|
else
|
|
obj-$(CONFIG_SPL_UT_LOAD) += image/
|
|
endif
|