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.
38 lines
1.3 KiB
38 lines
1.3 KiB
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := pdmtool
|
|
|
|
LOCAL_MULTILIB := both
|
|
LOCAL_BUILD_STATIC := true
|
|
|
|
LOCAL_SRC_FILES := pdmtool.c
|
|
|
|
LOCAL_CFLAGS := -Ivendor/huanglong/uapi/common/include \
|
|
-Ivendor/huanglong/uapi/pdm/include \
|
|
-Ivendor/huanglong/uapi/vo/include \
|
|
-Ivendor/huanglong/uapi/panel/include \
|
|
-Ivendor/huanglong/uapi/panel/include \
|
|
-Ivendor/huanglong/uapi/include/video \
|
|
-Ivendor/huanglong/uapi/include/cec \
|
|
-Ivendor/platform/secure_c/include \
|
|
-Ivendor/huanglong/linux/include/common \
|
|
-Ivendor/huanglong/linux/include/pdm \
|
|
-Ivendor/huanglong/linux/include/panel \
|
|
-Ivendor/huanglong/linux/include/generic
|
|
|
|
LOCAL_CFLAGS += -DLOG_TAG=pdmtool \
|
|
-DCONFIG_SOCT_LOG_SUPPORT \
|
|
-Wno-error=pointer-sign \
|
|
-Wno-error=unused-variable \
|
|
-Wno-error=unused-parameter
|
|
|
|
LOCAL_SHARED_LIBRARIES := libuapi_securec \
|
|
libuapi_common \
|
|
libuapi_vo \
|
|
libuapi_panel \
|
|
libuapi_pdm \
|
|
libuapi_flash
|
|
|
|
include $(BUILD_LINUX_EXECUTABLE)
|