blob: e0bd9e04e8f3427340d41c5792d91ba486497e62 [file] [log] [blame]
Mario Six62120902018-09-27 09:19:33 +02001# SPDX-License-Identifier: GPL-2.0+
2#
3# (C) Copyright 2018
4# Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
Simon Glass644d8072022-08-01 07:57:59 -06005ifeq ($(CONFIG_SPL_BUILD),)
Heinrich Schuchardtf77a6352019-01-30 07:53:31 +01006obj-y += cmd_ut_lib.o
Simon Glass143fa862021-09-25 07:03:07 -06007obj-y += abuf.o
Heinrich Schuchardtf8537802020-08-23 10:53:50 +02008obj-$(CONFIG_EFI_LOADER) += efi_device_path.o
Heinrich Schuchardte1eb3192020-07-01 20:01:53 +02009obj-$(CONFIG_EFI_SECURE_BOOT) += efi_image_region.o
Mario Six62120902018-09-27 09:19:33 +020010obj-y += hexdump.o
Simon Glass644d8072022-08-01 07:57:59 -060011obj-$(CONFIG_SANDBOX) += kconfig.o
Simon Goldschmidt9f3b6272019-01-14 22:38:14 +010012obj-y += lmb.o
Heinrich Schuchardt711cadb2021-03-23 19:11:27 +010013obj-y += longjmp.o
Heinrich Schuchardt7423bbf2020-11-05 01:29:06 +010014obj-$(CONFIG_CONSOLE_RECORD) += test_print.o
Heinrich Schuchardt89835412020-08-21 03:56:17 +020015obj-$(CONFIG_SSCANF) += sscanf.o
Heinrich Schuchardtf77a6352019-01-30 07:53:31 +010016obj-y += string.o
Sean Anderson33512d02021-03-11 00:15:43 -050017obj-y += strlcat.o
Heinrich Schuchardtf0266112019-10-15 21:46:04 +020018obj-$(CONFIG_ERRNO_STR) += test_errno_str.o
AKASHI Takahirob5124e32019-11-13 09:45:02 +090019obj-$(CONFIG_UT_LIB_ASN1) += asn1.o
AKASHI Takahirof24cd6c2020-02-21 15:13:00 +090020obj-$(CONFIG_UT_LIB_RSA) += rsa.o
Philippe Reynescb69a812020-01-06 15:22:36 +010021obj-$(CONFIG_AES) += test_aes.o
Sean Anderson6fbe0052020-10-27 19:55:37 -040022obj-$(CONFIG_GETOPT) += getopt.o
Heinrich Schuchardt8e4edb22023-02-22 02:10:20 +010023obj-$(CONFIG_CRC8) += test_crc8.o
Steffen Jaeckel229bd512021-07-08 15:57:33 +020024obj-$(CONFIG_UT_LIB_CRYPT) += test_crypt.o
Simon Glass644d8072022-08-01 07:57:59 -060025else
26obj-$(CONFIG_SANDBOX) += kconfig_spl.o
27endif