Home | History | Annotate | Download | only in tf_daemon
      1 ifeq ($(TARGET_BOARD_PLATFORM),omap4)
      2 
      3 LOCAL_PATH := $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_ARM_MODE := arm
      7 
      8 LOCAL_SRC_FILES := \
      9 	delegation_client.c \
     10 	delegation_client_extension.c \
     11 	smc_properties.c \
     12 	smc_properties_parser.c \
     13 	lib_manifest2.c
     14 
     15 LOCAL_CFLAGS += -DLINUX
     16 LOCAL_CFLAGS += -D__ANDROID32__
     17 LOCAL_CFLAGS += -DSUPPORT_DELEGATION_EXTENSION
     18 
     19 ifdef S_VERSION_BUILD
     20 LOCAL_CFLAGS += -DS_VERSION_BUILD=$(S_VERSION_BUILD)
     21 endif
     22 
     23 LOCAL_CFLAGS += -I $(LOCAL_PATH)/../tf_sdk/include/
     24 
     25 LOCAL_MODULE:= tf_daemon
     26 LOCAL_STATIC_LIBRARIES := libtee_client_api_driver
     27 LOCAL_MODULE_TAGS := optional
     28 
     29 include $(BUILD_EXECUTABLE)
     30 endif
     31