14 lines
386 B
Makefile
14 lines
386 B
Makefile
|
CFG_TEE_TA_LOG_LEVEL ?= 2
|
||
|
CFG_TA_OPTEE_CORE_API_COMPAT_1_1=y
|
||
|
|
||
|
# The UUID for the Trusted Application
|
||
|
BINARY=0651d840-a91b-4b3f-a222-b68cd195231c
|
||
|
|
||
|
-include $(TA_DEV_KIT_DIR)/mk/ta_dev_kit.mk
|
||
|
|
||
|
ifeq ($(wildcard $(TA_DEV_KIT_DIR)/mk/ta_dev_kit.mk), )
|
||
|
clean:
|
||
|
@echo 'Note: $$(TA_DEV_KIT_DIR)/mk/ta_dev_kit.mk not found, cannot clean TA'
|
||
|
@echo 'Note: TA_DEV_KIT_DIR=$(TA_DEV_KIT_DIR)'
|
||
|
endif
|