mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 01:24:27 +00:00

Change-Id: Id9843ba0ccfb448cf17e09e0659b743741ae01ac Signed-off-by: Harrison Mutai <harrison.mutai@arm.com>
21 lines
457 B
Makefile
21 lines
457 B
Makefile
#
|
|
# Copyright (c) 2023-2024, Arm Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
ifeq (${TRANSFER_LIST},1)
|
|
|
|
ifeq (${ARCH},aarch32)
|
|
$(eval $(call add_define,TRANSFER_LIST_AARCH32))
|
|
endif
|
|
|
|
TRANSFER_LIST_SOURCES += $(addprefix lib/transfer_list/, \
|
|
transfer_list.c)
|
|
|
|
BL31_SOURCES += $(TRANSFER_LIST_SOURCES)
|
|
BL2_SOURCES += $(TRANSFER_LIST_SOURCES)
|
|
BL1_SOURCES += $(TRANSFER_LIST_SOURCES)
|
|
|
|
endif # TRANSFER_LIST
|
|
|