mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
793cdeb880
Original commit message from CVS: * ext/a52dec/Makefile.am: * ext/amrnb/Makefile.am: * ext/cdio/Makefile.am: * ext/dvdnav/Makefile.am: * ext/dvdread/Makefile.am: * ext/lame/Makefile.am: * ext/mad/Makefile.am: * ext/mpeg2dec/Makefile.am: * ext/sidplay/Makefile.am: * gst/ac3parse/Makefile.am: * gst/asfdemux/Makefile.am: * gst/dvdlpcmdec/Makefile.am: * gst/dvdsub/Makefile.am: * gst/iec958/Makefile.am: * gst/mpegaudioparse/Makefile.am: * gst/mpegstream/Makefile.am: * gst/realmedia/Makefile.am: * gst/synaesthesia/Makefile.am: Don't install static libs for plugins. Fixes #550851 for ugly.
17 lines
439 B
Makefile
17 lines
439 B
Makefile
plugin_LTLIBRARIES = libgsta52dec.la
|
|
|
|
libgsta52dec_la_SOURCES = gsta52dec.c
|
|
libgsta52dec_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(LIBOIL_CFLAGS) \
|
|
$(A52DEC_CFLAGS)
|
|
libgsta52dec_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstaudio-$(GST_MAJORMINOR) \
|
|
$(LIBOIL_LIBS) \
|
|
$(A52DEC_LIBS)
|
|
libgsta52dec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgsta52dec_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gsta52dec.h
|