summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk8
1 files changed, 7 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 4eeca87..dac5231 100644
--- a/Android.mk
+++ b/Android.mk
@@ -18,6 +18,12 @@ LOCAL_SRC_FILES := \
src/screen.c \
src/state.c
-LOCAL_CFLAGS := -std=c99
+LOCAL_CFLAGS += \
+ -std=c99 \
+ -Wno-missing-field-initializers \
+ -Wno-sign-compare \
+ -Wno-unused-parameter \
+
+LOCAL_CLANG := true
include $(BUILD_STATIC_LIBRARY)