gstreamer/gst/rtsp-server/Makefile.am

69 lines
2.1 KiB
Makefile
Raw Normal View History

2009-01-08 12:18:55 +00:00
public_headers = \
rtsp-params.h \
rtsp-sdp.h \
rtsp-media.h \
rtsp-media-factory.h \
rtsp-media-mapping.h \
rtsp-session.h \
rtsp-session-pool.h \
rtsp-client.h \
rtsp-server.h
2009-01-08 12:18:55 +00:00
c_sources = \
rtsp-params.c \
rtsp-sdp.c \
2009-01-08 12:18:55 +00:00
rtsp-media.c \
rtsp-media-factory.c \
rtsp-media-mapping.c \
rtsp-session.c \
2009-01-08 12:18:55 +00:00
rtsp-session-pool.c \
rtsp-client.c \
rtsp-server.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@ \
-lgstapp-@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)
CLEANFILES =
-include $(INTROSPECTION_MAKEFILE)
INTROSPECTION_GIRS =
INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir) --strip-prefix=Gst
INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir)
if HAVE_INTROSPECTION
introspection_sources = $(public_headers) $(c_sources)
GstRtspServer-0.10.gir: $(INTROSPECTION_SCANNER) libgstrtspserver-@GST_MAJORMINOR@.la
GstRtspServer_0_10_gir_INCLUDES = Gst-@GST_MAJORMINOR@ GstRtsp-@GST_MAJORMINOR@
GstRtspServer_0_10_gir_CFLAGS = $(INCLUDES)
GstRtspServer_0_10_gir_LIBS = libgstrtspserver-@GST_MAJORMINOR@.la
GstRtspServer_0_10_gir_FILES = $(introspection_sources)
GstRtspServer_0_10_gir_NAMESPACE = GstRtspServer
GstRtspServer_0_10_gir_VERSION = @GST_MAJORMINOR@
INTROSPECTION_GIRS += GstRtspServer-0.10.gir
girdir = $(datadir)/gir-1.0
gir_DATA = $(INTROSPECTION_GIRS)
typelibdir = $(libdir)/girepository-1.0
typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
CLEANFILES += $(gir_DATA) $(typelib_DATA)
endif