Home | History | Annotate | Download | only in tf_daemon
      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_ARM_MODE := arm
     11 
     12 LOCAL_SRC_FILES := \
     13 	delegation_client.c \
     14 	delegation_client_extension.c \
     15 	smc_properties.c \
     16 	smc_properties_parser.c \
     17 	lib_manifest2.c
     18 
     19 ifdef S_VERSION_BUILD
     20 LOCAL_CFLAGS += -DS_VERSION_BUILD=$(S_VERSION_BUILD)
     21 endif
     22 
     23 LOCAL_LDLIBS += -llog
     24 
     25 LOCAL_CFLAGS += -DLINUX
     26 LOCAL_CFLAGS += -DANDROID
     27 LOCAL_CFLAGS += -DSUPPORT_DELEGATION_EXTENSION
     28 LOCAL_CFLAGS += -I $(LOCAL_PATH)/../tf_sdk/include/
     29 
     30 LOCAL_MODULE:= tf_daemon
     31 LOCAL_STATIC_LIBRARIES := libtee_client_api_driver
     32 LOCAL_MODULE_TAGS := optional
     33 
     34 include $(BUILD_EXECUTABLE)
     35 endif
     36 endif
     37