Make the server handle arbitrary pipelines
[platform/upstream/gstreamer.git] / gst / rtsp-server / Makefile.am
1 public_headers = \
2                 rtsp-server.h \
3                 rtsp-client.h \
4                 rtsp-media.h \
5                 rtsp-media-factory.h \
6                 rtsp-media-mapping.h \
7                 rtsp-session-pool.h \
8                 rtsp-session.h
9                 
10 c_sources = \
11         rtsp-server.c \
12         rtsp-client.c \
13         rtsp-media.c \
14         rtsp-media-factory.c \
15         rtsp-media-mapping.c \
16         rtsp-session-pool.c \
17         rtsp-session.c
18         
19 lib_LTLIBRARIES = \
20         libgstrtspserver-@GST_MAJORMINOR@.la
21
22 libgstrtspserver_@GST_MAJORMINOR@_la_SOURCES = \
23     $(c_sources)
24     
25 libgstrtspserver_@GST_MAJORMINOR@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
26 libgstrtspserver_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
27 libgstrtspserver_@GST_MAJORMINOR@_la_LIBADD = \
28         $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
29     -lgstrtp-@GST_MAJORMINOR@ -lgstrtsp-@GST_MAJORMINOR@ \
30             -lgstsdp-@GST_MAJORMINOR@ $(GST_LIBS) $(LIBM)
31 libgstrtspserver_@GST_MAJORMINOR@_la_LIBTOOLFLAGS = --tag=disable-static
32
33 libgstrtspserver_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/rtsp-server
34 libgstrtspserver_@GST_MAJORMINOR@include_HEADERS = $(public_headers)