mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
5a8e9cd080
Install the headers, version the library with @GST_MAJORMINOR@, add all required libraries to _LIBADD instead of _LDFLAGS, and add GST_*_LDFLAGS to _LDFLAGS. Fixes bug #594715.
15 lines
520 B
Makefile
15 lines
520 B
Makefile
plugin_LTLIBRARIES = libgstlv2.la
|
|
|
|
libgstlv2_la_SOURCES = gstlv2.c
|
|
libgstlv2_la_CFLAGS = \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CONTROLLER_CFLAGS) $(GST_CFLAGS) $(SLV2_CFLAGS)
|
|
libgstlv2_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/signalprocessor/libgstsignalprocessor-@GST_MAJORMINOR@.la \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) \
|
|
$(LIBM) $(SLV2_LIBS)
|
|
libgstlv2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstlv2_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstlv2.h
|