1# SPDX-License-Identifier: GPL-2.0+ 2# 3# (C) Copyright 2018 4# Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc 5ifeq ($(CONFIG_SPL_BUILD),) 6obj-y += cmd_ut_lib.o 7obj-y += abuf.o 8obj-$(CONFIG_EFI_LOADER) += efi_device_path.o 9obj-$(CONFIG_EFI_SECURE_BOOT) += efi_image_region.o 10obj-y += hexdump.o 11obj-$(CONFIG_SANDBOX) += kconfig.o 12obj-y += lmb.o 13obj-y += longjmp.o 14obj-$(CONFIG_CONSOLE_RECORD) += test_print.o 15obj-$(CONFIG_SSCANF) += sscanf.o 16obj-y += string.o 17obj-y += strlcat.o 18obj-$(CONFIG_ERRNO_STR) += test_errno_str.o 19obj-$(CONFIG_UT_LIB_ASN1) += asn1.o 20obj-$(CONFIG_UT_LIB_RSA) += rsa.o 21obj-$(CONFIG_AES) += test_aes.o 22obj-$(CONFIG_GETOPT) += getopt.o 23obj-$(CONFIG_CRC8) += test_crc8.o 24obj-$(CONFIG_UT_LIB_CRYPT) += test_crypt.o 25else 26obj-$(CONFIG_SANDBOX) += kconfig_spl.o 27endif 28