summaryrefslogtreecommitdiffstats
path: root/remote-processor/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'remote-processor/Android.mk')
-rw-r--r--remote-processor/Android.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/remote-processor/Android.mk b/remote-processor/Android.mk
index b8050b1..784a917 100644
--- a/remote-processor/Android.mk
+++ b/remote-processor/Android.mk
@@ -49,9 +49,6 @@ common_cflags := \
-Werror \
-Wextra \
-Wno-unused-parameter \
- -pthread
-
-common_ldlibs := -pthread
#############################
# Target build
@@ -60,8 +57,9 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(common_src_files)
+LOCAL_STATIC_LIBRARIES := libpfw_utility
+
LOCAL_CFLAGS := $(common_cflags)
-LOCAL_LDLIBS := $(common_ldlibs)
LOCAL_MODULE := $(common_module)
LOCAL_MODULE_OWNER := intel
@@ -76,8 +74,10 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(common_src_files)
-LOCAL_CFLAGS := $(common_cflags)
-LOCAL_LDLIBS := $(common_ldlibs)
+LOCAL_STATIC_LIBRARIES := libpfw_utility_host
+
+LOCAL_CFLAGS := $(common_cflags) -pthread
+LOCAL_LDLIBS := -lpthread
LOCAL_MODULE := $(common_module)_host
LOCAL_MODULE_OWNER := intel