mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-15 17:14:21 +00:00

This change migrates the values of `CC`, `CPP`, `AS` and other toolchain variables to the new `$(toolchain)-$(tool)` variables, which were introduced by the toolchain refactor patch. These variables should be equivalent to the values that they're replacing. Change-Id: I644fe4ce82ef1894bed129ddb4b6ab94fb04985d Signed-off-by: Chris Kay <chris.kay@arm.com>
18 lines
418 B
Makefile
18 lines
418 B
Makefile
#
|
|
# Copyright (c) 2022, STMicroelectronics - All Rights Reserved
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
# Override TBBR Cert to update generic certificate
|
|
|
|
$(eval $(call add_define,PDEF_CERTS))
|
|
|
|
PLAT_INCLUDE += -I${PLAT_DIR}include
|
|
|
|
src/stm32mp1_tbb_cert.o: ${PLAT_DIR}stm32mp1_tbb_cert.c
|
|
${Q}$(host-cc) -c ${HOSTCCFLAGS} ${INC_DIR} $< -o $@
|
|
|
|
PLAT_OBJECTS = src/stm32mp1_tbb_cert.o
|
|
|
|
OBJECTS += $(PLAT_OBJECTS)
|