2016-07-20 01:02:55 +02:00
|
|
|
AM_CPPFLAGS += -I$(top_builddir)/src -I$(top_srcdir)/src
|
2016-09-07 07:46:31 +02:00
|
|
|
noinst_LTLIBRARIES = libimageio_util.la libimagedec.la libimageenc.la
|
2016-07-20 01:02:55 +02:00
|
|
|
|
|
|
|
noinst_HEADERS =
|
|
|
|
noinst_HEADERS += ../src/webp/decode.h
|
|
|
|
noinst_HEADERS += ../src/webp/types.h
|
|
|
|
|
2016-07-21 03:25:00 +02:00
|
|
|
libimageio_util_la_SOURCES = imageio_util.c imageio_util.h
|
|
|
|
|
2016-07-20 01:02:55 +02:00
|
|
|
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)
|
2016-09-07 07:46:31 +02:00
|
|
|
|
|
|
|
libimageenc_la_SOURCES = image_enc.c image_enc.h
|
|
|
|
libimageenc_la_CPPFLAGS = $(JPEG_INCLUDES) $(PNG_INCLUDES) $(TIFF_INCLUDES)
|
|
|
|
libimageenc_la_CPPFLAGS += $(AM_CPPFLAGS) $(USE_EXPERIMENTAL_CODE)
|