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.
44 lines
1.6 KiB
44 lines
1.6 KiB
4 months ago
|
LOCAL_PATH := $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
LOCAL_MODULE := sample_amp
|
||
|
|
||
|
LOCAL_SRC_FILES := *.c
|
||
|
|
||
|
LOCAL_CFLAGS := -Ivendor/huanglong/uapi/include/audio \
|
||
|
-Ivendor/huanglong/uapi/include/media \
|
||
|
-Ivendor/huanglong/uapi/include/video \
|
||
|
-Ivendor/huanglong/uapi/aenc/include \
|
||
|
-Ivendor/huanglong/uapi/ai/include \
|
||
|
-Ivendor/huanglong/uapi/avplay/include \
|
||
|
-Ivendor/huanglong/uapi/ao/include \
|
||
|
-Ivendor/huanglong/uapi/amp/include \
|
||
|
-Ivendor/huanglong/uapi/pdm/include \
|
||
|
-Ivendor/huanglong/uapi/vo/include \
|
||
|
-Ivendor/huanglong/uapi/panel/include \
|
||
|
-Ivendor/huanglong/uapi/include/cec \
|
||
|
-Ivendor/huanglong/uapi/common/include \
|
||
|
-Ivendor/huanglong/uapi/ha_codec/include \
|
||
|
-Ivendor/huanglong/linux/include/audio \
|
||
|
-Ivendor/huanglong/linux/include/generic \
|
||
|
-Ivendor/huanglong/linux/include/amp \
|
||
|
-Ivendor/huanglong/sample/audio \
|
||
|
-Ivendor/platform/secure_c/include
|
||
|
|
||
|
LOCAL_CFLAGS += -DLOG_TAG=sample_amp \
|
||
|
-DCONFIG_SOCT_LOG_SUPPORT
|
||
|
|
||
|
LOCAL_LDFLAGS := -lpthread
|
||
|
|
||
|
LOCAL_SHARED_LIBRARIES := libuapi_common \
|
||
|
libuapi_avplay \
|
||
|
libuapi_securec \
|
||
|
libuapi_ao \
|
||
|
libuapi_amp \
|
||
|
libuapi_ai \
|
||
|
libuapi_aenc
|
||
|
|
||
|
LOCAL_STATIC_LIBRARIES := libuapi_adp
|
||
|
|
||
|
include $(BUILD_LINUX_EXECUTABLE)
|