mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-19 20:08:28 +01:00
1e7d4401dc
Change-Id: I40e693e52d8eb4e32b86273952dac2e5eefe6e7c
20 lines
577 B
Makefile
20 lines
577 B
Makefile
AM_CPPFLAGS += -I$(top_builddir)/src -I$(top_srcdir)/src
|
|
lib_LTLIBRARIES = libwebpextras.la
|
|
|
|
noinst_HEADERS =
|
|
noinst_HEADERS += ../src/webp/types.h
|
|
|
|
libwebpextras_la_SOURCES =
|
|
libwebpextras_la_SOURCES += extras.c extras.h
|
|
|
|
libwebpextras_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
libwebpextras_la_LIBADD = ../src/libwebp.la
|
|
|
|
noinst_PROGRAMS = get_disto
|
|
|
|
get_disto_SOURCES = get_disto.c
|
|
get_disto_CPPFLAGS = $(AM_CPPFLAGS)
|
|
get_disto_LDADD = ../imageio/libexample_util.la ../imageio/libimagedec.la
|
|
get_disto_LDADD += ../src/libwebp.la
|
|
get_disto_LDADD += $(PNG_LIBS) $(JPEG_LIBS) $(TIFF_LIBS)
|