summaryrefslogtreecommitdiff
path: root/gst/rtsp-server/Makefile.am
blob: 43b54c4105c126dfc3537d1fa27b2a73d22a9e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
public_headers = \
		rtsp-auth.h \
		rtsp-params.h \
		rtsp-sdp.h \
		rtsp-media.h \
		rtsp-media-factory.h \
		rtsp-media-factory-uri.h \
		rtsp-media-mapping.h \
		rtsp-session.h \
		rtsp-session-pool.h \
		rtsp-client.h \
		rtsp-server.h

c_sources = \
	rtsp-auth.c \
	rtsp-params.c \
	rtsp-sdp.c \
	rtsp-media.c \
	rtsp-media-factory.c \
	rtsp-media-factory-uri.c \
	rtsp-media-mapping.c \
	rtsp-session.c \
	rtsp-session-pool.c \
	rtsp-client.c \
	rtsp-server.c

noinst_HEADERS = 

lib_LTLIBRARIES = \
	libgstrtspserver-@GST_API_VERSION@.la

libgstrtspserver_@GST_API_VERSION@_la_SOURCES = \
    $(c_sources)

libgstrtspserver_@GST_API_VERSION@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
libgstrtspserver_@GST_API_VERSION@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
libgstrtspserver_@GST_API_VERSION@_la_LIBADD = \
	$(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
    -lgstrtp-@GST_API_VERSION@ -lgstrtsp-@GST_API_VERSION@ \
            -lgstsdp-@GST_API_VERSION@ \
            -lgstapp-@GST_API_VERSION@ \
	    $(GST_LIBS) $(LIBM)
libgstrtspserver_@GST_API_VERSION@_la_LIBTOOLFLAGS = --tag=disable-static

libgstrtspserver_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/rtsp-server
libgstrtspserver_@GST_API_VERSION@include_HEADERS = $(public_headers)

CLEANFILES =

if HAVE_INTROSPECTION
BUILT_GIRSOURCES = GstRtspServer-@GST_API_VERSION@.gir

gir_headers=$(patsubst %,$(srcdir)/%, $(libgstrtspserver_@GST_API_VERSION@include_HEADERS))
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstrtspserver_@GST_API_VERSION@_la_SOURCES))
gir_cincludes=$(patsubst %,--c-include='gst/rtsp-server/%',$(libgstrtspinclude_HEADERS))

GstRtspServer-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstrtspserver-@GST_API_VERSION@.la
	$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
		$(INTROSPECTION_SCANNER) -v --namespace GstRtspServer \
		--nsversion=@GST_API_VERSION@ \
		--strip-prefix=Gst \
		-I$(top_srcdir) \
		-I$(top_builddir) \
		-DIN_GOBJECT_INTROSPECTION=1 \
		--c-include='gst/gst.h' \
		--add-include-path=`$(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
		--add-include-path=`$(PKG_CONFIG) --variable=girdir gstreamer-rtsp-@GST_API_VERSION@` \
		--add-include-path=`$(PKG_CONFIG) --variable=girdir gstreamer-sdp-@GST_API_VERSION@` \
		--library=libgstrtspserver-@GST_API_VERSION@.la \
		--include=Gst-@GST_API_VERSION@ \
		--include=GstRtsp-@GST_API_VERSION@ \
		--libtool="$(top_builddir)/libtool" \
		--pkg gstreamer-@GST_API_VERSION@ \
		--pkg gstreamer-rtsp-@GST_API_VERSION@ \
		--pkg-export gstreamer-rtsp-server-@GST_API_VERSION@ \
		--output $@ \
		$(gir_headers) \
		$(gir_sources)

# INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
# install anything - we need to install inside our prefix.
girdir = $(datadir)/gir-1.0
gir_DATA = $(BUILT_GIRSOURCES)

typelibsdir = $(libdir)/girepository-1.0/

typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)

%.typelib: %.gir $(INTROSPECTION_COMPILER)
	$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
	$(INTROSPECTION_COMPILER) \
	--includedir=$(srcdir) \
	--includedir=$(builddir) \
	--includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
	--includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-rtsp-@GST_API_VERSION@` \
	--includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-sdp-@GST_API_VERSION@` \
	$(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)

CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA)
endif