mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
ebee57f4d1
decoding and file i/o have been split to imageio, all that remains is some string routines used for parameter parsing in the examples Change-Id: I77386cd8aa39124b9e14c95fdbaa17ea4ab5bb24
20 lines
777 B
Makefile
20 lines
777 B
Makefile
AM_CPPFLAGS += -I$(top_builddir)/src -I$(top_srcdir)/src
|
|
noinst_LTLIBRARIES = libimageio_util.la libimagedec.la
|
|
|
|
noinst_HEADERS =
|
|
noinst_HEADERS += ../src/webp/decode.h
|
|
noinst_HEADERS += ../src/webp/types.h
|
|
noinst_HEADERS += ../examples/stopwatch.h
|
|
|
|
libimageio_util_la_SOURCES = imageio_util.c imageio_util.h
|
|
|
|
libimagedec_la_SOURCES = image_dec.c image_dec.h
|
|
libimagedec_la_SOURCES += jpegdec.c jpegdec.h
|
|
libimagedec_la_SOURCES += metadata.c metadata.h
|
|
libimagedec_la_SOURCES += pngdec.c pngdec.h
|
|
libimagedec_la_SOURCES += tiffdec.c tiffdec.h
|
|
libimagedec_la_SOURCES += webpdec.c webpdec.h
|
|
libimagedec_la_SOURCES += wicdec.c wicdec.h
|
|
libimagedec_la_CPPFLAGS = $(JPEG_INCLUDES) $(PNG_INCLUDES) $(TIFF_INCLUDES)
|
|
libimagedec_la_CPPFLAGS += $(AM_CPPFLAGS) $(USE_EXPERIMENTAL_CODE)
|