You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
793 B
29 lines
793 B
7 months ago
|
LOCAL_PATH := $(call my-dir)
|
||
|
include $(CLEAR_VARS)
|
||
|
include $(SDK_DIR)/Android.def
|
||
|
|
||
|
LOCAL_MODULE := libuapi_hdmitx
|
||
|
LOCAL_MODULE_TAGS := optional
|
||
|
LOCAL_PROPRIETARY_MODULE := true
|
||
|
LOCAL_MULTILIB := both
|
||
|
|
||
|
LOCAL_C_INCLUDES := $(UNF_DIR) \
|
||
|
$(USR_DIR)/securec \
|
||
|
$(USR_DIR)/include \
|
||
|
$(DRV_DIR)/include
|
||
|
|
||
|
LOCAL_SRC_FILES += iapi_hdmitx.c \
|
||
|
mpi_hdmitx.c
|
||
|
|
||
|
LOCAL_LDLAGS += -s
|
||
|
LOCAL_CFLAGS := $(CFG_SOCT_CFLAGS)
|
||
|
LOCAL_LDLAGS += -s
|
||
|
LOCAL_CFLAGS += -DLOG_TAG=\"$(LOCAL_MODULE)\"
|
||
|
LOCAL_CFLAGS += -Wlong-long -Wformat -Wpointer-arith
|
||
|
LOCAL_CFLAGS += -Wno-error=date-time
|
||
|
LOCAL_CFLAGS += -fstack-protector-all
|
||
|
|
||
|
LOCAL_SHARED_LIBRARIES := libuapi_common libuapi_memory libuapi_securec libuapi_secure
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|