diff options
Diffstat (limited to 'stack')
-rw-r--r-- | stack/Android.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stack/Android.mk b/stack/Android.mk index f280b5d..0d7a17e 100644 --- a/stack/Android.mk +++ b/stack/Android.mk @@ -2,8 +2,6 @@ ifneq ($(TARGET_SIMULATOR),true) LOCAL_PATH:= $(call my-dir) -include $(LOCAL_PATH)/../include/buildcfg.mk - include $(CLEAR_VARS) LOCAL_C_INCLUDES:= . \ @@ -184,8 +182,11 @@ LOCAL_SRC_FILES:= \ LOCAL_MODULE := libbt-brcm_stack LOCAL_MODULE_TAGS := optional +LOCAL_MODULE_CLASS := STATIC_LIBRARIES LOCAL_SHARED_LIBRARIES := libcutils libc +include $(LOCAL_PATH)/../include/buildcfg.mk + include $(BUILD_STATIC_LIBRARY) endif # TARGET_SIMULATOR != true |