]> git.ipfire.org Git - thirdparty/u-boot.git/blob - test/Makefile
Merge tag 'u-boot-amlogic-20220809' of https://source.denx.de/u-boot/custodians/u...
[thirdparty/u-boot.git] / test / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # (C) Copyright 2012 The Chromium Authors
4
5 obj-y += test-main.o
6 ifdef CONFIG_SPL_LOAD_FIT
7 obj-$(CONFIG_SANDBOX) += image/
8 endif
9
10 ifneq ($(CONFIG_$(SPL_)BLOBLIST),)
11 obj-$(CONFIG_$(SPL_)CMDLINE) += bloblist.o
12 obj-$(CONFIG_$(SPL_)CMDLINE) += bootm.o
13 endif
14 obj-$(CONFIG_$(SPL_)CMDLINE) += cmd/
15 obj-$(CONFIG_$(SPL_)CMDLINE) += cmd_ut.o
16 obj-$(CONFIG_$(SPL_)CMDLINE) += command_ut.o
17 obj-$(CONFIG_$(SPL_)UT_COMPRESSION) += compression.o
18 obj-y += dm/
19 obj-$(CONFIG_FUZZ) += fuzz/
20 obj-$(CONFIG_$(SPL_)CMDLINE) += print_ut.o
21 obj-$(CONFIG_$(SPL_)CMDLINE) += str_ut.o
22 obj-$(CONFIG_UT_TIME) += time_ut.o
23 obj-y += ut.o
24
25 ifeq ($(CONFIG_SPL_BUILD),)
26 obj-$(CONFIG_UNIT_TEST) += boot/
27 obj-$(CONFIG_UNIT_TEST) += common/
28 obj-$(CONFIG_UNIT_TEST) += lib/
29 obj-y += log/
30 obj-$(CONFIG_$(SPL_)UT_UNICODE) += unicode_ut.o
31 endif