1 # Only applicable for OMAP4 and OMAP5 boards. 2 # First eliminate OMAP3 and then ensure that this is not used 3 # for customer boards 4 ifneq ($(TARGET_BOARD_PLATFORM),omap3) 5 ifeq ($(findstring omap, $(TARGET_BOARD_PLATFORM)),omap) 6 7 LOCAL_PATH := $(call my-dir) 8 include $(CLEAR_VARS) 9 10 LOCAL_PRELINK_MODULE := false 11 LOCAL_ARM_MODE := arm 12 13 LOCAL_SRC_FILES := \ 14 delegation_client.c \ 15 delegation_client_extension.c \ 16 smc_properties.c \ 17 smc_properties_parser.c \ 18 lib_manifest2.c 19 20 ifdef S_VERSION_BUILD 21 LOCAL_CFLAGS += -DS_VERSION_BUILD=$(S_VERSION_BUILD) 22 endif 23 24 LOCAL_LDLIBS += -llog 25 26 LOCAL_CFLAGS += -DLINUX 27 LOCAL_CFLAGS += -DANDROID 28 LOCAL_CFLAGS += -DSUPPORT_DELEGATION_EXTENSION 29 LOCAL_CFLAGS += -I $(LOCAL_PATH)/../tf_sdk/include/ 30 31 LOCAL_MODULE:= tf_daemon 32 LOCAL_STATIC_LIBRARIES := libtee_client_api_driver 33 LOCAL_MODULE_TAGS := optional 34 35 include $(BUILD_EXECUTABLE) 36 endif 37 endif 38