mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
e7b9201555
Original commit message from CVS: reorganize C/LIB flags add gst_info to gstcompat.h
36 lines
1 KiB
Makefile
36 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_LIB_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_LIB_LIBS) -lm
|
|
|
|
install-data-local: as-libtool-install-data-local
|
|
|
|
uninstall-local: as-libtool-uninstall-local
|
|
|
|
include $(top_srcdir)/common/as-libtool.mak
|
|
|