mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-19 20:08:28 +01:00
20a7fea064
drop './' from the reference in webp_quality_LDADD.. this form is used in the other makefiles. this fixes a parallel build failure seen under freebsd: make[1]: don't know how to make ./libwebpextras.la. Stop Change-Id: I59635a0c747d402cd990f6379eb1948c3e40f278
27 lines
878 B
Makefile
27 lines
878 B
Makefile
AM_CPPFLAGS += -I$(top_builddir)/src -I$(top_srcdir)/src
|
|
noinst_LTLIBRARIES = libwebpextras.la
|
|
|
|
noinst_HEADERS =
|
|
noinst_HEADERS += ../src/webp/types.h
|
|
|
|
libwebpextras_la_SOURCES =
|
|
libwebpextras_la_SOURCES += extras.c extras.h quality_estimate.c
|
|
|
|
libwebpextras_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
libwebpextras_la_LDFLAGS = -lm
|
|
libwebpextras_la_LIBADD = ../src/libwebp.la
|
|
|
|
noinst_PROGRAMS = get_disto webp_quality
|
|
|
|
get_disto_SOURCES = get_disto.c
|
|
get_disto_CPPFLAGS = $(AM_CPPFLAGS)
|
|
get_disto_LDADD = ../imageio/libimageio_util.la ../imageio/libimagedec.la
|
|
get_disto_LDADD += ../src/libwebp.la
|
|
get_disto_LDADD += $(PNG_LIBS) $(JPEG_LIBS) $(TIFF_LIBS)
|
|
|
|
webp_quality_SOURCES = webp_quality.c
|
|
webp_quality_CPPFLAGS = $(AM_CPPFLAGS) $(USE_EXPERIMENTAL_CODE)
|
|
webp_quality_LDADD = ../imageio/libimageio_util.la
|
|
webp_quality_LDADD += libwebpextras.la
|
|
webp_quality_LDADD += ../src/libwebp.la
|