mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-12 23:54:15 +00:00
4597b03873
Opens in Android Studio but haven't even tried to build it yet (it won't.. I know that much!)
34 lines
No EOL
491 B
Makefile
34 lines
No EOL
491 B
Makefile
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libpng
|
|
|
|
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 \
|
|
arm/arm_init.c \
|
|
arm/filter_neon_intrinsics.c
|
|
|
|
|
|
|
|
|
|
LOCAL_LDLIBS := -lz
|
|
LOCAL_EXPORT_LDLIBS := -lz
|
|
LOCAL_STATIC_LIBRARIES :=
|
|
#include $(BUILD_SHARED_LIBRARY)
|
|
include $(BUILD_STATIC_LIBRARY) |