mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 22:05:40 +00:00

The project has been renamed from "Arm Trusted Firmware (ATF)" to "Trusted Firmware-A (TF-A)" long ago. A few references to the old project name that still remained in various places have now been removed. This change doesn't affect any platform files. Any "ATF" references inside platform files, still remain. Change-Id: Id97895faa5b1845e851d4d50f5750de7a55bf99e Signed-off-by: John Tsichritzis <john.tsichritzis@arm.com>
15 lines
456 B
Makefile
15 lines
456 B
Makefile
#
|
|
# Copyright (c) 2016-2019, Arm Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
# This makefile only aims at complying with Trusted Firmware-A build process so
|
|
# that "optee" is a valid TF-A AArch32 Secure Playload identifier.
|
|
|
|
ifneq ($(ARCH),aarch32)
|
|
$(error This directory targets AArch32 support)
|
|
endif
|
|
|
|
$(eval $(call add_define,AARCH32_SP_OPTEE))
|
|
|
|
$(info Trusted Firmware-A built for OP-TEE payload support)
|