12345678910111213141516171819202122232425 |
- #
- # Copyright (c) 2021-2024, STMicroelectronics - All Rights Reserved
- #
- # SPDX-License-Identifier: BSD-3-Clause
- #
- # Name of the platform defined source file name,
- # which contains platform defined UUID entries populated
- # in the plat_def_toc_entries[].
- PLAT_DEF_UUID_FILE_NAME := plat_def_uuid_config
- INCLUDE_PATHS += -I../../plat/st/common/include -I./
- PLAT_DEF_UUID := yes
- ifeq (${PLAT_DEF_UUID},yes)
- HOSTCCFLAGS += -DPLAT_DEF_FIP_UUID
- ${PLAT_DEF_UUID_FILE_NAME}.o: plat_fiptool/st/${PLAT_DEF_UUID_FILE_NAME}.c
- $(host-cc) -c ${CPPFLAGS} ${HOSTCCFLAGS} ${INCLUDE_PATHS} $< -o $@
- PLAT_OBJECTS += ${PLAT_DEF_UUID_FILE_NAME}.o
- endif
- OBJECTS += ${PLAT_OBJECTS}
|