mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +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.
20 lines
788 B
Makefile
20 lines
788 B
Makefile
plugin_LTLIBRARIES = libgstrmdemux.la
|
|
|
|
libgstrmdemux_la_SOURCES = rademux.c rmdemux.c \
|
|
rmutils.c rdtdepay.c rdtmanager.c \
|
|
rtspreal.c realhash.c asmrules.c \
|
|
rdtjitterbuffer.c gstrdtbuffer.c
|
|
|
|
libgstrmdemux_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstrmdemux_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS)\
|
|
-lgstrtsp-@GST_MAJORMINOR@ -lgstsdp-@GST_MAJORMINOR@
|
|
libgstrmdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstrmdemux_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = rademux.h rmdemux.h rmutils.h rdtdepay.h rdtmanager.h \
|
|
rdtjitterbuffer.h rtspreal.h realhash.h asmrules.h gstrdtbuffer.h
|
|
|
|
noinst_PROGRAMS = asmrules
|
|
asmrules_CFLAGS = $(GST_CFLAGS) -DTEST
|
|
asmrules_LDADD = $(GST_LIBS) $(LIBM)
|
|
|