arm-trusted-firmware/lib/transfer_list/transfer_list.mk
Raymond Mao 3ba2c15147 feat(handoff): introduce firmware handoff library
Add transfer list APIs and firmware handoff build option.

Change-Id: I68a0ace22c7e50fcdacd101eb76b271d7b76d8ff
Signed-off-by: Raymond Mao <raymond.mao@linaro.org>
2023-09-22 10:56:51 +01:00

20 lines
412 B
Makefile

#
# Copyright (c) 2023, 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)
endif # TRANSFER_LIST