Makefile 413 B

12345678910111213
  1. ifeq ($(CONFIG_TRUSTONIC_TEE_SUPPORT),y)
  2. ifeq (,$(filter $(CONFIG_MTK_PLATFORM), "mt6582" "mt6592"))
  3. # armv8
  4. ifeq ($(CONFIG_TRUSTONIC_TEE_VERSION), "")
  5. obj-$(CONFIG_TRUSTONIC_TEE_SUPPORT) += 302a/
  6. else
  7. obj-$(CONFIG_TRUSTONIC_TEE_SUPPORT) += $(subst ",,$(CONFIG_TRUSTONIC_TEE_VERSION))/
  8. endif
  9. else
  10. # armv7
  11. obj-$(CONFIG_TRUSTONIC_TEE_SUPPORT) += $(subst ",,$(CONFIG_MTK_PLATFORM))/
  12. endif
  13. endif