aboutsummaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk24
1 files changed, 0 insertions, 24 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 9b2d6da..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,24 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-
-common_src_files := \
- encode_rs_char.c \
- decode_rs_char.c \
- init_rs_char.c
-
-include $(CLEAR_VARS)
-LOCAL_MODULE := libfec_rs
-LOCAL_CLANG := true
-LOCAL_CFLAGS := -Wall -O3
-LOCAL_SANITIZE := integer
-LOCAL_SRC_FILES := $(common_src_files)
-include $(BUILD_STATIC_LIBRARY)
-
-include $(CLEAR_VARS)
-LOCAL_MODULE := libfec_rs
-LOCAL_CLANG := true
-LOCAL_CFLAGS := -Wall -O3
-ifeq ($(HOST_OS),linux)
-LOCAL_SANITIZE := integer
-endif
-LOCAL_SRC_FILES := $(common_src_files)
-include $(BUILD_HOST_STATIC_LIBRARY)