mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
d664509a68
Original commit message from CVS: * libs/gst/control/Makefile.am: link to libgstreamer (fixes Debian bug 262019, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=262019 )
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
lib_LTLIBRARIES = libgstcontrol-@GST_MAJORMINOR@.la
|
|
AS_LIBTOOL_LIB = libgstcontrol-@GST_MAJORMINOR@
|
|
|
|
EXTRA_DIST = $(as_libtool_EXTRA_DIST)
|
|
noinst_DATA = $(as_libtool_noinst_DATA_files)
|
|
|
|
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_OBJ_CFLAGS) -I$(top_srcdir)/libs
|
|
libgstcontrol_@GST_MAJORMINOR@_la_LDFLAGS = @GST_LIB_LDFLAGS@ $(as_libtool_LDFLAGS)
|
|
# control uses log and exp, so we need -lm if xml is disabled
|
|
libgstcontrol_@GST_MAJORMINOR@_la_LIBADD = $(GST_OBJ_LIBS) -lm
|
|
|
|
install-data-local: as-libtool-install-data-local
|
|
|
|
uninstall-local: as-libtool-uninstall-local
|
|
|
|
include $(top_srcdir)/common/as-libtool.mak
|