mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 17:42:41 +00:00
30 lines
772 B
Makefile
Executable File
30 lines
772 B
Makefile
Executable File
################################################################################
|
|
# @file pkgs/stringl/Android.mk
|
|
# @brief Makefile for building the string library on Android.
|
|
################################################################################
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
libdiag_includes:= \
|
|
$(LOCAL_PATH)/../include \
|
|
$(LOCAL_PATH)/../src
|
|
|
|
LOCAL_C_INCLUDES := $(libdiag_includes)
|
|
LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/common/inc
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
diag_dci_sample.c
|
|
|
|
commonSharedLibraries :=libdiag
|
|
|
|
LOCAL_MODULE := diag_dci_sample
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_SHARED_LIBRARIES := $(commonSharedLibraries)
|
|
LOCAL_SHARED_LIBRARIES += liblog
|
|
|
|
LOCAL_MODULE_OWNER := qcom
|
|
include $(BUILD_EXECUTABLE)
|
|
|