diff options
Diffstat (limited to 'libacc/Android.mk')
-rw-r--r-- | libacc/Android.mk | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/libacc/Android.mk b/libacc/Android.mk deleted file mode 100644 index 5101e16..0000000 --- a/libacc/Android.mk +++ /dev/null @@ -1,31 +0,0 @@ -LOCAL_PATH:= $(call my-dir) -include $(CLEAR_VARS) - -# Shared library for target -# ======================================================== - -LOCAL_MODULE:= libacc -LOCAL_SRC_FILES := acc.cpp - -LOCAL_SHARED_LIBRARIES := libdl libcutils - -include $(BUILD_SHARED_LIBRARY) - -# Static library for host -# ======================================================== - -include $(CLEAR_VARS) -LOCAL_MODULE:= libacc -LOCAL_SRC_FILES := acc.cpp - -LOCAL_CFLAGS := -O0 -g - -LOCAL_STATIC_LIBRARIES := libcutils -LOCAL_LDLIBS := -ldl - -include $(BUILD_HOST_STATIC_LIBRARY) - -# Build children -# ======================================================== - -include $(call all-makefiles-under,$(LOCAL_PATH)) |