mirror of
https://github.com/webmproject/libwebp.git
synced 2025-02-13 07:22:52 +01:00
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
|