1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SDK_VERSION := 9 5 6LOCAL_SRC_FILES := \ 7 dgif_lib.c \ 8 egif_lib.c \ 9 gifalloc.c \ 10 gif_err.c \ 11 gif_hash.c \ 12 quantize.c 13 14LOCAL_CFLAGS += -Wno-format -Wno-sign-compare -Wno-unused-parameter -DHAVE_CONFIG_H 15LOCAL_MODULE:= libgif 16 17include $(BUILD_STATIC_LIBRARY) 18