mirror of
https://github.com/webmproject/libwebp.git
synced 2025-02-21 19:32:52 +01:00
libwebp{,decoder} - 1.3.0 libwebp libtool - 8.6.1 libwebpdecoder libtool - 4.6.1 mux - 1.3.0 libtool - 3.11.0 demux - 1.3.0 libtool - 2.12.0 sharpyuv - 0.2.0 (unchanged, first release) libtool - 0.0.0 (ditto) Bug: webp:590 Change-Id: Ibf3ed56af87667c30650d8dd60eb0ff3bdcb6749
56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
# The mux and demux libraries depend on libwebp, thus the '.' to force
|
|
# the build order so it's available to them.
|
|
SUBDIRS = dec enc dsp utils .
|
|
if BUILD_MUX
|
|
SUBDIRS += mux
|
|
endif
|
|
if BUILD_DEMUX
|
|
SUBDIRS += demux
|
|
endif
|
|
|
|
lib_LTLIBRARIES = libwebp.la
|
|
|
|
if BUILD_LIBWEBPDECODER
|
|
lib_LTLIBRARIES += libwebpdecoder.la
|
|
endif
|
|
|
|
common_HEADERS =
|
|
common_HEADERS += webp/decode.h
|
|
common_HEADERS += webp/types.h
|
|
commondir = $(includedir)/webp
|
|
|
|
libwebp_la_SOURCES =
|
|
libwebpinclude_HEADERS =
|
|
libwebpinclude_HEADERS += webp/encode.h
|
|
|
|
noinst_HEADERS =
|
|
noinst_HEADERS += webp/format_constants.h
|
|
|
|
libwebp_la_LIBADD =
|
|
libwebp_la_LIBADD += dec/libwebpdecode.la
|
|
libwebp_la_LIBADD += dsp/libwebpdsp.la
|
|
libwebp_la_LIBADD += enc/libwebpencode.la
|
|
libwebp_la_LIBADD += utils/libwebputils.la
|
|
|
|
# Use '-no-undefined' to declare that libwebp does not depend on any libraries
|
|
# other than the ones listed on the command line, i.e., after linking, it will
|
|
# not have unresolved symbols. Some platforms (Windows among them) require all
|
|
# symbols in shared libraries to be resolved at library creation.
|
|
libwebp_la_LDFLAGS = -no-undefined -version-info 8:6:1
|
|
libwebpincludedir = $(includedir)/webp
|
|
pkgconfig_DATA = libwebp.pc
|
|
|
|
if BUILD_LIBWEBPDECODER
|
|
libwebpdecoder_la_SOURCES =
|
|
|
|
libwebpdecoder_la_LIBADD =
|
|
libwebpdecoder_la_LIBADD += dec/libwebpdecode.la
|
|
libwebpdecoder_la_LIBADD += dsp/libwebpdspdecode.la
|
|
libwebpdecoder_la_LIBADD += utils/libwebputilsdecode.la
|
|
|
|
libwebpdecoder_la_LDFLAGS = -no-undefined -version-info 4:6:1
|
|
pkgconfig_DATA += libwebpdecoder.pc
|
|
endif
|
|
|
|
${pkgconfig_DATA}: ${top_builddir}/config.status
|