diff options
Diffstat (limited to 'libacc/Android.mk')
-rw-r--r-- | libacc/Android.mk | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/libacc/Android.mk b/libacc/Android.mk index 77c71c6..f77e2b3 100644 --- a/libacc/Android.mk +++ b/libacc/Android.mk @@ -1,9 +1,8 @@ LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) -# -# Shared library -# +# Shared library for target +# ======================================================== LOCAL_MODULE:= libacc LOCAL_SRC_FILES := acc.cpp @@ -12,8 +11,29 @@ ifeq ($(TARGET_ARCH),arm) LOCAL_SRC_FILES += disassem.cpp endif -LOCAL_SHARED_LIBRARIES := libdl +LOCAL_SHARED_LIBRARIES := libdl libcutils include $(BUILD_SHARED_LIBRARY) -include $(call all-makefiles-under,$(LOCAL_PATH))
\ No newline at end of file +# Shared library for host +# ======================================================== + +include $(CLEAR_VARS) +LOCAL_MODULE:= libacc +LOCAL_SRC_FILES := acc.cpp + +LOCAL_CFLAGS := -O0 -g + +ifeq ($(TARGET_ARCH),arm) +LOCAL_SRC_FILES += disassem.cpp +endif + +LOCAL_STATIC_LIBRARIES := libcutils +LOCAL_LDLIBS := -ldl + +include $(BUILD_HOST_SHARED_LIBRARY) + +# Build children +# ======================================================== + +include $(call all-makefiles-under,$(LOCAL_PATH)) |