eced5819d9e617a6078d4843ce9b8eeaade9df4c
[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-sdp.h \
8                 rtsp-session-pool.h \
9                 rtsp-session.h
10                 
11 c_sources = \
12         rtsp-server.c \
13         rtsp-client.c \
14         rtsp-media.c \
15         rtsp-media-factory.c \
16         rtsp-media-mapping.c \
17         rtsp-sdp.c \
18         rtsp-session-pool.c \
19         rtsp-session.c
20         
21 lib_LTLIBRARIES = \
22         libgstrtspserver-@GST_MAJORMINOR@.la
23
24 libgstrtspserver_@GST_MAJORMINOR@_la_SOURCES = \
25     $(c_sources)
26     
27 libgstrtspserver_@GST_MAJORMINOR@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
28 libgstrtspserver_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
29 libgstrtspserver_@GST_MAJORMINOR@_la_LIBADD = \
30         $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
31     -lgstrtp-@GST_MAJORMINOR@ -lgstrtsp-@GST_MAJORMINOR@ \
32             -lgstsdp-@GST_MAJORMINOR@ \
33             -lgstapp-@GST_MAJORMINOR@ \
34             $(GST_LIBS) $(LIBM)
35 libgstrtspserver_@GST_MAJORMINOR@_la_LIBTOOLFLAGS = --tag=disable-static
36
37 libgstrtspserver_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/rtsp-server
38 libgstrtspserver_@GST_MAJORMINOR@include_HEADERS = $(public_headers)