summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..2453314
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,13 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ dgif_lib.c \
+ gifalloc.c \
+ gif_err.c
+
+LOCAL_CFLAGS += -Wno-format -DHAVE_CONFIG_H
+
+LOCAL_MODULE:= libgif
+
+include $(BUILD_STATIC_LIBRARY)