blob: c092fe0427b296c1c27d499b2c49187225827586 [file] [log] [blame]
Mohamed Elzahhar94349032022-11-16 12:05:37 +00001#
2# Copyright (c) 2023, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7PLAT_DEF_OID := 1
8
9ifeq (${PLAT_DEF_OID},1)
10 ifeq (${ARM_ETHOSN_NPU_DRIVER},1)
11 $(eval $(call add_define, PLAT_DEF_OID))
12 $(eval $(call add_define, PDEF_CERTS))
13 $(eval $(call add_define, PDEF_EXTS))
14 $(eval $(call add_define, PDEF_KEYS))
15
16 PLAT_INCLUDE += -I ${PLAT_DIR}/certificate/include \
17 -I ../../include/drivers/arm
18
19 PLAT_OBJECTS += ${PLAT_DIR}certificate/src/juno_tbb_cert.o \
20 ${PLAT_DIR}certificate/src/juno_tbb_ext.o \
21 ${PLAT_DIR}certificate/src/juno_tbb_key.o
22
23 OBJECTS += ${PLAT_OBJECTS}
24 endif
25endif