1 LOCAL_PATH:= $(call my-dir) 2 include $(CLEAR_VARS) 3 4 LOCAL_SDK_VERSION := 9 5 6 LOCAL_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 14 LOCAL_CFLAGS += -Wno-format -Wno-sign-compare -Wno-unused-parameter -DHAVE_CONFIG_H 15 LOCAL_MODULE:= libgif 16 17 include $(BUILD_STATIC_LIBRARY) 18