share/png: add Android specific makefiles to the png library
[nit.git] / share / png / Android.mk
1 LOCAL_PATH := $(call my-dir)
2 include $(CLEAR_VARS)
3
4 LOCAL_MODULE := png
5 LOCAL_SRC_FILES :=\
6 png.c \
7 pngerror.c \
8 pngget.c \
9 pngmem.c \
10 pngpread.c \
11 pngread.c \
12 pngrio.c \
13 pngrtran.c \
14 pngrutil.c \
15 pngset.c \
16 pngtrans.c \
17 pngwio.c \
18 pngwrite.c \
19 pngwtran.c \
20 pngwutil.c
21
22 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
23
24 #include $(BUILD_SHARED_LIBRARY)
25 include $(BUILD_STATIC_LIBRARY)