mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
480dfe3198
Original commit message from CVS: Add $(GST_LIBS) to libgstcontrol's LIBADD. Should go into 0.6.1.
26 lines
766 B
Makefile
26 lines
766 B
Makefile
librarydir = $(libdir)
|
|
|
|
library_LTLIBRARIES = libgstcontrol-@GST_MAJORMINOR@.la
|
|
|
|
libgstcontrol_@GST_MAJORMINOR@_includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/control
|
|
libgstcontrol_@GST_MAJORMINOR@_include_HEADERS = \
|
|
control.h \
|
|
dparammanager.h \
|
|
dparam.h \
|
|
dparam_smooth.h \
|
|
unitconvert.h \
|
|
dparamcommon.h \
|
|
dplinearinterp.h
|
|
|
|
libgstcontrol_@GST_MAJORMINOR@_la_SOURCES = \
|
|
control.c \
|
|
dparammanager.c \
|
|
dparam.c \
|
|
dparam_smooth.c \
|
|
unitconvert.c \
|
|
dplinearinterp.c
|
|
|
|
libgstcontrol_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS) -finline-functions -ffast-math
|
|
libgstcontrol_@GST_MAJORMINOR@_la_LDFLAGS = @GST_LT_LDFLAGS@ -version-info @GST_LIBVERSION@
|
|
libgstcontrol_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIBS)
|
|
|