1#
2# Copyright (c) 2021, NXP. All rights reserved.
3# Copyright (c) 2023, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8# Name of the platform defined source file name,
9# which contains platform defined UUID entries populated
10# in the plat_def_toc_entries[].
11PLAT_DEF_UUID_CONFIG_FILE_NAME	:= plat_def_uuid_config
12
13PLAT_DEF_UUID_CONFIG_FILE_PATH := plat_fiptool/nxp/
14
15PLAT_DEF_OID := yes
16PLAT_DEF_UUID := yes
17PLAT_DEF_UUID_OID_CONFIG_PATH := ../../plat/nxp/common/fip_handler/common
18
19
20INCLUDE_PATHS += -I${PLAT_DEF_UUID_OID_CONFIG_PATH} \
21		 -I./
22
23ifeq (${PLAT_DEF_OID},yes)
24HOSTCCFLAGS += -DPLAT_DEF_OID
25endif
26
27ifeq (${PLAT_DEF_UUID},yes)
28HOSTCCFLAGS += -DPLAT_DEF_FIP_UUID
29PLAT_OBJECTS += ${PLAT_DEF_UUID_CONFIG_FILE_PATH}/${PLAT_DEF_UUID_CONFIG_FILE_NAME}.o
30endif
31
32OBJECTS += ${PLAT_OBJECTS}
33