Don't install static libs for plugins. Fixes #550851 for -bad.
[platform/upstream/gstreamer.git] / gst / rtpmanager / Makefile.am
1 plugin_LTLIBRARIES = libgstrtpmanager.la
2
3 glib_enum_define = GST_RTP_BIN
4 glib_enum_prefix = gst_rtp_bin
5
6 include $(top_srcdir)/common/glib-gen.mak
7
8 built_sources = gstrtpbin-marshal.c
9 built_headers = gstrtpbin-marshal.h
10
11 BUILT_SOURCES = $(built_sources) $(built_headers)
12
13 libgstrtpmanager_la_SOURCES = gstrtpmanager.c \
14                               gstrtpbin.c \
15                               gstrtpclient.c \
16                               gstrtpjitterbuffer.c \
17                               gstrtpptdemux.c \
18                               gstrtpssrcdemux.c \
19                               rtpjitterbuffer.c      \
20                               rtpsession.c      \
21                               rtpsource.c      \
22                               rtpstats.c      \
23                               gstrtpsession.c
24
25 nodist_libgstrtpmanager_la_SOURCES = \
26       $(built_sources)
27
28 noinst_HEADERS = gstrtpbin.h \
29                  gstrtpclient.h \
30                  gstrtpjitterbuffer.h \
31                  gstrtpptdemux.h \
32                  gstrtpssrcdemux.h \
33                  rtpjitterbuffer.h \
34                  rtpsession.h  \
35                  rtpsource.h  \
36                  rtpstats.h  \
37                  gstrtpsession.h
38
39 libgstrtpmanager_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
40         $(ERROR_CFLAGS)
41 libgstrtpmanager_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
42         -lgstnetbuffer-@GST_MAJORMINOR@ -lgstrtp-@GST_MAJORMINOR@ \
43         $(GST_BASE_LIBS) $(GST_LIBS_LIBS)
44 libgstrtpmanager_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
45 libgstrtpmanager_la_LIBTOOLFLAGS = --tag=disable-static
46
47 CLEANFILES = $(BUILT_SOURCES)
48
49 EXTRA_DIST = gstrtpbin-marshal.list
50
51