1# 2# Copyright 2025 NXP. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6 7# Name of the platform defined source file name, 8# which contains platform defined UUID entries populated 9# in the plat_def_toc_entries[]. 10PLAT_DEF_UUID_CONFIG_FILE_NAME := plat_def_uuid_config 11 12PLAT_DEF_UUID_CONFIG_FILE_PATH := plat_fiptool/nxp/s32/s32g274ardb2 13 14PLAT_DEF_UUID := yes 15PLAT_DEF_UUID_OID_CONFIG_PATH := ../../plat/nxp/s32/s32g274ardb2 16 17 18FIPTOOL_INCLUDE_DIRS += ${PLAT_DEF_UUID_OID_CONFIG_PATH}/include ./ 19 20ifeq (${PLAT_DEF_UUID},yes) 21FIPTOOL_CFLAGS += -DPLAT_DEF_FIP_UUID 22 23FIPTOOL_SOURCES += ${PLAT_DEF_UUID_CONFIG_FILE_PATH}/${PLAT_DEF_UUID_CONFIG_FILE_NAME}.c 24endif 25