Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.03 KB

Android.mk

File metadata and controls

41 lines (30 loc) · 1.03 KB
 
1
2
3
4
5
6
7
8
9
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
common_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
Oct 2, 2018
Oct 2, 2018
10
11
12
13
14
15
16
17
ifeq ($(TARGET_ARCH_ABI),armeabi)
common_SRC_FILES += \
arm/arm_init.c arm/filter_neon.S arm/filter_neon_intrinsics.c
endif
ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
common_SRC_FILES += \
arm/arm_init.c arm/filter_neon.S arm/filter_neon_intrinsics.c
endif
Oct 12, 2018
Oct 12, 2018
18
19
20
21
ifeq ($(TARGET_ARCH_ABI),arm64-v8a)
common_SRC_FILES += \
arm/arm_init.c arm/filter_neon.S arm/filter_neon_intrinsics.c
endif
Oct 2, 2018
Oct 2, 2018
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
common_CFLAGS := ## -fomit-frame-pointer
common_C_INCLUDES += \
# For the host
# =====================================================
LOCAL_SRC_FILES := $(common_SRC_FILES)
LOCAL_CFLAGS += $(common_CFLAGS)
LOCAL_C_INCLUDES += $(common_C_INCLUDES)
LOCAL_MODULE:= png
LOCAL_COPY_HEADERS_TO := $(common_COPY_HEADERS_TO)
LOCAL_COPY_HEADERS := $(common_COPY_HEADERS)
include $(BUILD_STATIC_LIBRARY)
#include $(BUILD_SHARED_LIBRARY)