blob: e75a263e6a4c8332a024c482c5c9946accfc1fcd [file] [log] [blame]
Mario Six87be2fe2018-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 Glass29784d62022-08-01 07:57:59 -06005ifeq ($(CONFIG_SPL_BUILD),)
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +01006obj-y += cmd_ut_lib.o
Simon Glass67bc59d2021-09-25 07:03:07 -06007obj-y += abuf.o
Heinrich Schuchardt5bba77e2020-08-23 10:53:50 +02008obj-$(CONFIG_EFI_LOADER) += efi_device_path.o
Heinrich Schuchardtae54b942020-07-01 20:01:53 +02009obj-$(CONFIG_EFI_SECURE_BOOT) += efi_image_region.o
Mario Six87be2fe2018-09-27 09:19:33 +020010obj-y += hexdump.o
Simon Glass29784d62022-08-01 07:57:59 -060011obj-$(CONFIG_SANDBOX) += kconfig.o
Simon Goldschmidta01ae0c2019-01-14 22:38:14 +010012obj-y += lmb.o
Heinrich Schuchardtf709a0b2021-03-23 19:11:27 +010013obj-y += longjmp.o
Heinrich Schuchardtaf033ec2020-11-05 01:29:06 +010014obj-$(CONFIG_CONSOLE_RECORD) += test_print.o
Heinrich Schuchardt4431a982020-08-21 03:56:17 +020015obj-$(CONFIG_SSCANF) += sscanf.o
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +010016obj-y += string.o
Sean Andersonc4ac52f2021-03-11 00:15:43 -050017obj-y += strlcat.o
Heinrich Schuchardt79c84de2019-10-15 21:46:04 +020018obj-$(CONFIG_ERRNO_STR) += test_errno_str.o
AKASHI Takahirof523400f2019-11-13 09:45:02 +090019obj-$(CONFIG_UT_LIB_ASN1) += asn1.o
AKASHI Takahirod090b392020-02-21 15:13:00 +090020obj-$(CONFIG_UT_LIB_RSA) += rsa.o
Philippe Reynesebcdb8d2020-01-06 15:22:36 +010021obj-$(CONFIG_AES) += test_aes.o
Sean Andersonfbc33df2020-10-27 19:55:37 -040022obj-$(CONFIG_GETOPT) += getopt.o
Heinrich Schuchardt3080ddf2023-02-22 02:10:20 +010023obj-$(CONFIG_CRC8) += test_crc8.o
Steffen Jaeckel26dd9932021-07-08 15:57:33 +020024obj-$(CONFIG_UT_LIB_CRYPT) += test_crypt.o
Abdellatif El Khlifib83dc8d2023-08-04 14:33:39 +010025obj-$(CONFIG_LIB_UUID) += uuid.o
Simon Glass29784d62022-08-01 07:57:59 -060026else
27obj-$(CONFIG_SANDBOX) += kconfig_spl.o
28endif