mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
061263a787
moves ReadFile to a common location Change-Id: Ia81230671f16d7d4d218b9954a5be55577a85413
21 lines
778 B
Makefile
21 lines
778 B
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/src
|
|
|
|
bin_PROGRAMS = dwebp cwebp webpmux
|
|
noinst_LTLIBRARIES = libexampleutil.la
|
|
|
|
libexampleutil_la_SOURCES = example_util.c
|
|
libexampleutilinclude_HEADERS = example_util.h
|
|
libexampleutilincludedir =
|
|
|
|
dwebp_SOURCES = dwebp.c stopwatch.h
|
|
dwebp_CPPFLAGS = $(AM_CPPFLAGS) $(PNG_INCLUDES) $(JPEG_INCLUDES) $(USE_EXPERIMENTAL_CODE)
|
|
dwebp_LDADD = libexampleutil.la ../src/libwebp.la $(PNG_LIBS) $(JPEG_LIBS)
|
|
|
|
cwebp_SOURCES = cwebp.c stopwatch.h
|
|
cwebp_CPPFLAGS = $(AM_CPPFLAGS) $(PNG_INCLUDES) $(JPEG_INCLUDES) $(USE_EXPERIMENTAL_CODE)
|
|
cwebp_LDADD = ../src/libwebp.la $(PNG_LIBS) $(JPEG_LIBS)
|
|
|
|
webpmux_SOURCES = webpmux.c
|
|
webpmux_CPPFLAGS = $(AM_CPPFLAGS) $(USE_EXPERIMENTAL_CODE)
|
|
webpmux_LDADD = libexampleutil.la ../src/mux/libwebpmux.la ../src/libwebp.la
|