mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 12:28:26 +01:00
2154835f73
- use common file organization across subdir makefiles - append lib/source/header list variables and sort Change-Id: I0653e1c73a4552b0c43d21f321b22b4972d6e87b
24 lines
652 B
Makefile
24 lines
652 B
Makefile
SUBDIRS = dec enc dsp utils mux
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src
|
|
lib_LTLIBRARIES = libwebp.la
|
|
|
|
libwebp_la_SOURCES =
|
|
libwebpinclude_HEADERS =
|
|
libwebpinclude_HEADERS += webp/decode.h
|
|
libwebpinclude_HEADERS += webp/decode_vp8.h
|
|
libwebpinclude_HEADERS += webp/encode.h
|
|
libwebpinclude_HEADERS += webp/types.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
|
|
|
|
libwebp_la_LDFLAGS = -version-info 2:0:0
|
|
libwebpincludedir = $(includedir)/webp
|
|
|
|
pkgconfig_DATA = libwebp.pc
|
|
${pkgconfig_DATA}: ${top_builddir}/config.status
|