gstreamer/gst/rtsp-server/Makefile.am

31 lines
963 B
Makefile
Raw Normal View History

2009-01-08 12:18:55 +00:00
public_headers = \
rtsp-server.h \
rtsp-client.h \
rtsp-media.h \
rtsp-session-pool.h \
rtsp-session.h
2009-01-08 12:18:55 +00:00
c_sources = \
rtsp-server.c \
rtsp-client.c \
rtsp-media.c \
rtsp-session-pool.c \
rtsp-session.c
2009-01-08 12:51:26 +00:00
2009-01-08 12:18:55 +00:00
lib_LTLIBRARIES = \
2008-11-13 18:43:10 +00:00
libgstrtspserver-@GST_MAJORMINOR@.la
2009-01-08 12:18:55 +00:00
2008-11-13 18:43:10 +00:00
libgstrtspserver_@GST_MAJORMINOR@_la_SOURCES = \
2009-01-08 12:18:55 +00:00
$(c_sources)
2008-11-13 18:43:10 +00:00
libgstrtspserver_@GST_MAJORMINOR@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
libgstrtspserver_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstrtspserver_@GST_MAJORMINOR@_la_LIBADD = \
2009-01-08 12:18:55 +00:00
$(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
-lgstrtp-@GST_MAJORMINOR@ -lgstrtsp-@GST_MAJORMINOR@ \
-lgstsdp-@GST_MAJORMINOR@ $(GST_LIBS) $(LIBM)
2008-11-13 18:43:10 +00:00
libgstrtspserver_@GST_MAJORMINOR@_la_LIBTOOLFLAGS = --tag=disable-static
2009-01-08 12:18:55 +00:00
2008-11-13 18:43:10 +00:00
libgstrtspserver_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/rtsp-server
libgstrtspserver_@GST_MAJORMINOR@include_HEADERS = $(public_headers)