mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-26 05:38:22 +01:00
25f585c4f2
lib - 0.2.1 libtool - 4.1.0 (compatible release) Change-Id: Ib6ca47f2008d5c97d818422816ac60d0d0d8cffa
32 lines
1015 B
Makefile
32 lines
1015 B
Makefile
SUBDIRS = dec enc dsp utils
|
|
if WANT_MUX
|
|
SUBDIRS += mux
|
|
endif
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src
|
|
lib_LTLIBRARIES = libwebp.la
|
|
|
|
libwebp_la_SOURCES =
|
|
libwebpinclude_HEADERS =
|
|
libwebpinclude_HEADERS += webp/decode.h
|
|
libwebpinclude_HEADERS += webp/encode.h
|
|
libwebpinclude_HEADERS += webp/types.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 4:1:0
|
|
libwebpincludedir = $(includedir)/webp
|
|
|
|
pkgconfig_DATA = libwebp.pc
|
|
${pkgconfig_DATA}: ${top_builddir}/config.status
|