mtd: nand: raw: atmel: Add error handling when rb-gpios missing
[platform/kernel/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 ifndef CONFIG_SANDBOX_VPL
21 obj-$(CONFIG_UNIT_TEST) += lib/
22 endif
23 obj-$(CONFIG_$(SPL_)CMDLINE) += print_ut.o
24 obj-$(CONFIG_$(SPL_)CMDLINE) += str_ut.o
25 obj-$(CONFIG_UT_TIME) += time_ut.o
26 obj-y += ut.o
27
28 ifeq ($(CONFIG_SPL_BUILD),)
29 obj-$(CONFIG_UNIT_TEST) += boot/
30 obj-$(CONFIG_UNIT_TEST) += common/
31 obj-y += log/
32 obj-$(CONFIG_$(SPL_)UT_UNICODE) += unicode_ut.o
33 endif