mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-19 20:08:28 +01:00
6fc1a9f96e
This simplifies integration with the Android platform and avoids the files from being used when a non-NDK build is performed. In that case Android.bp is preferred. Change-Id: I6e334cf8b05a19da8452405f5f448f9e4b6e4a40
97 lines
2.1 KiB
Makefile
97 lines
2.1 KiB
Makefile
# Ignore this file during non-NDK builds.
|
|
ifdef NDK_ROOT
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
################################################################################
|
|
# libexample_util
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
example_util.c \
|
|
|
|
LOCAL_CFLAGS := $(WEBP_CFLAGS)
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../src
|
|
|
|
LOCAL_MODULE := example_util
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
################################################################################
|
|
# cwebp
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
# Note: to enable jpeg/png encoding the sources from AOSP can be used with
|
|
# minor modification to their Android.mk files.
|
|
LOCAL_SRC_FILES := \
|
|
cwebp.c \
|
|
|
|
LOCAL_CFLAGS := $(WEBP_CFLAGS)
|
|
LOCAL_STATIC_LIBRARIES := example_util imageio_util imagedec webpdemux webp
|
|
|
|
LOCAL_MODULE := cwebp
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
################################################################################
|
|
# dwebp
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
dwebp.c \
|
|
|
|
LOCAL_CFLAGS := $(WEBP_CFLAGS)
|
|
LOCAL_STATIC_LIBRARIES := example_util imagedec imageenc webpdemux webp
|
|
LOCAL_MODULE := dwebp
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
################################################################################
|
|
# webpmux
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
webpmux.c \
|
|
|
|
LOCAL_CFLAGS := $(WEBP_CFLAGS)
|
|
LOCAL_STATIC_LIBRARIES := example_util imageio_util webpmux webp
|
|
|
|
LOCAL_MODULE := webpmux_example
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
################################################################################
|
|
# img2webp
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
img2webp.c \
|
|
|
|
LOCAL_CFLAGS := $(WEBP_CFLAGS)
|
|
LOCAL_STATIC_LIBRARIES := example_util imageio_util imagedec webpmux webpdemux \
|
|
webp
|
|
|
|
LOCAL_MODULE := img2webp_example
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
################################################################################
|
|
# webpinfo
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
webpinfo.c \
|
|
|
|
LOCAL_CFLAGS := $(WEBP_CFLAGS)
|
|
LOCAL_STATIC_LIBRARIES := example_util imageio_util webp
|
|
|
|
LOCAL_MODULE := webpinfo_example
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
endif # NDK_ROOT
|