Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 10c08ef | 2012-03-30 21:30:58 +0000 | [diff] [blame] | 2 | # |
3 | # (C) Copyright 2012 The Chromium Authors | ||||
Simon Glass | 10c08ef | 2012-03-30 21:30:58 +0000 | [diff] [blame] | 4 | |
Simon Glass | 5722fb2 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 5 | obj-y += test-main.o |
6 | |||||
Simon Glass | 86adc2e | 2024-09-29 19:49:53 -0600 | [diff] [blame] | 7 | obj-$(CONFIG_$(XPL_)CMDLINE) += cmd/ |
8 | obj-$(CONFIG_$(XPL_)CMDLINE) += cmd_ut.o | ||||
Simon Glass | 85556fb | 2020-10-03 09:25:25 -0600 | [diff] [blame] | 9 | obj-y += dm/ |
Andrew Scull | e184c5b | 2022-05-30 10:00:09 +0000 | [diff] [blame] | 10 | obj-$(CONFIG_FUZZ) += fuzz/ |
Simon Glass | 644d807 | 2022-08-01 07:57:59 -0600 | [diff] [blame] | 11 | ifndef CONFIG_SANDBOX_VPL |
12 | obj-$(CONFIG_UNIT_TEST) += lib/ | ||||
13 | endif | ||||
Francis Laniel | 2dba91a | 2023-12-22 22:02:21 +0100 | [diff] [blame] | 14 | ifneq ($(CONFIG_HUSH_PARSER),) |
Simon Glass | 86adc2e | 2024-09-29 19:49:53 -0600 | [diff] [blame] | 15 | obj-$(CONFIG_$(XPL_)CMDLINE) += hush/ |
Francis Laniel | 2dba91a | 2023-12-22 22:02:21 +0100 | [diff] [blame] | 16 | endif |
Simon Glass | 85556fb | 2020-10-03 09:25:25 -0600 | [diff] [blame] | 17 | obj-y += ut.o |
Simon Glass | 8ec2933 | 2020-10-03 09:25:26 -0600 | [diff] [blame] | 18 | |
Simon Glass | 0e84d96 | 2024-09-29 19:49:50 -0600 | [diff] [blame] | 19 | ifeq ($(CONFIG_XPL_BUILD),) |
Heinrich Schuchardt | b7ee8d0 | 2023-12-16 16:19:54 +0100 | [diff] [blame] | 20 | obj-y += boot/ |
Steffen Jaeckel | e1788f9 | 2021-07-08 15:57:40 +0200 | [diff] [blame] | 21 | obj-$(CONFIG_UNIT_TEST) += common/ |
Simon Glass | 8ec2933 | 2020-10-03 09:25:26 -0600 | [diff] [blame] | 22 | obj-y += log/ |
Sean Anderson | dcd91b1 | 2023-10-14 16:47:57 -0400 | [diff] [blame] | 23 | else |
24 | obj-$(CONFIG_SPL_UT_LOAD) += image/ | ||||
Simon Glass | 8ec2933 | 2020-10-03 09:25:26 -0600 | [diff] [blame] | 25 | endif |