From: Alexis Laferrière Date: Wed, 19 Feb 2014 19:49:29 +0000 (-0500) Subject: share/png: add Android specific makefiles to the png library X-Git-Tag: v0.6.5~42^2~9 X-Git-Url: http://nitlanguage.org share/png: add Android specific makefiles to the png library Signed-off-by: Alexis Laferrière --- diff --git a/share/png/Android.mk b/share/png/Android.mk new file mode 100644 index 0000000..e110418 --- /dev/null +++ b/share/png/Android.mk @@ -0,0 +1,25 @@ +LOCAL_PATH := $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_MODULE := png +LOCAL_SRC_FILES :=\ + png.c \ + pngerror.c \ + pngget.c \ + pngmem.c \ + pngpread.c \ + pngread.c \ + pngrio.c \ + pngrtran.c \ + pngrutil.c \ + pngset.c \ + pngtrans.c \ + pngwio.c \ + pngwrite.c \ + pngwtran.c \ + pngwutil.c + +LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) + +#include $(BUILD_SHARED_LIBRARY) +include $(BUILD_STATIC_LIBRARY) diff --git a/share/png/Application.mk b/share/png/Application.mk new file mode 100644 index 0000000..1a2cc05 --- /dev/null +++ b/share/png/Application.mk @@ -0,0 +1,2 @@ +APP_OPTIM := release +APP_MODULES := png