mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-19 20:08:28 +01:00
5efd6300dc
There's no need for this in libsharpyuv currently. This avoids an ABI bump and library size increase. Change-Id: I3e4c79052fdb4d628a2d36491547233dd0b6dc34
46 lines
1.4 KiB
Makefile
46 lines
1.4 KiB
Makefile
AM_CPPFLAGS += -I$(top_builddir) -I$(top_srcdir)
|
|
AM_CPPFLAGS += -I$(top_builddir)/src -I$(top_srcdir)/src
|
|
noinst_LTLIBRARIES = libwebpextras.la
|
|
|
|
noinst_HEADERS =
|
|
noinst_HEADERS += ../src/webp/types.h
|
|
|
|
libwebpextras_la_SOURCES =
|
|
libwebpextras_la_SOURCES += extras.c extras.h quality_estimate.c
|
|
libwebpextras_la_SOURCES += sharpyuv_risk_table.c sharpyuv_risk_table.h
|
|
|
|
libwebpextras_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
libwebpextras_la_LDFLAGS = -lm
|
|
libwebpextras_la_LIBADD = ../src/libwebp.la
|
|
|
|
noinst_PROGRAMS =
|
|
noinst_PROGRAMS += webp_quality
|
|
if BUILD_DEMUX
|
|
noinst_PROGRAMS += get_disto
|
|
endif
|
|
if BUILD_VWEBP_SDL
|
|
noinst_PROGRAMS += vwebp_sdl
|
|
endif
|
|
|
|
get_disto_SOURCES = get_disto.c
|
|
get_disto_CPPFLAGS = $(AM_CPPFLAGS)
|
|
get_disto_LDADD =
|
|
get_disto_LDADD += ../imageio/libimageio_util.la
|
|
get_disto_LDADD += ../imageio/libimagedec.la
|
|
get_disto_LDADD += ../src/libwebp.la
|
|
get_disto_LDADD += $(PNG_LIBS) $(JPEG_LIBS) $(TIFF_LIBS)
|
|
|
|
webp_quality_SOURCES = webp_quality.c
|
|
webp_quality_CPPFLAGS = $(AM_CPPFLAGS)
|
|
webp_quality_LDADD =
|
|
webp_quality_LDADD += ../imageio/libimageio_util.la
|
|
webp_quality_LDADD += libwebpextras.la
|
|
webp_quality_LDADD += ../src/libwebp.la
|
|
|
|
vwebp_sdl_SOURCES = vwebp_sdl.c webp_to_sdl.c webp_to_sdl.h
|
|
vwebp_sdl_CPPFLAGS = $(AM_CPPFLAGS) $(SDL_INCLUDES)
|
|
vwebp_sdl_LDADD =
|
|
vwebp_sdl_LDADD += ../imageio/libimageio_util.la
|
|
vwebp_sdl_LDADD += ../src/libwebp.la
|
|
vwebp_sdl_LDADD += $(SDL_LIBS)
|