1 lib_LTLIBRARIES = libgstreamer-@GST_API_VERSION@.la
3 if GST_DISABLE_REGISTRY
6 GST_REGISTRY_SRC = gstregistrybinary.c
14 GST_PARSE_LA = parse/libgstparse.la
20 GST_TRACE_SRC = gsttrace.c
26 GST_PLUGIN_SRC = gstplugin.c
29 if !GST_DISABLE_GST_DEBUG
30 SUBDIRS_PRINTF = printf
31 GST_PRINTF_LA = printf/libgstprintf.la
37 SUBDIRS = $(SUBDIRS_PARSE) $(SUBDIRS_PRINTF)
39 DIST_SUBDIRS = parse printf
41 # make variables for all generated source and header files to make the
44 built_header_configure = gstversion.h
45 built_sys_header_configure = gstconfig.h
46 built_header_make = gstenumtypes.h
47 built_source_make = gstenumtypes.c
49 EXTRA_libgstreamer_@GST_API_VERSION@_la_SOURCES = \
54 # temporarily not used
57 libgstreamer_@GST_API_VERSION@_la_SOURCES = \
79 gstdeviceproviderfactory.c \
106 gstregistrychunks.c \
119 gsttypefindfactory.c \
126 # do not put files in the distribution that are generated
127 nodist_libgstreamer_@GST_API_VERSION@_la_SOURCES = $(built_source_make)
129 # BUILT_SOURCES are built on make all/check/install before all other targets
131 $(built_header_configure) \
132 $(built_sys_header_configure) \
133 $(built_header_make) \
135 # CLEANFILES is for files generated by make
136 CLEANFILES = $(built_header_make) $(built_source_make) $(as_dll_cleanfiles) *.gcno *.gcda *.gcov *.gcov.out
137 # DISTCLEANFILES is for files generated by configure
138 DISTCLEANFILES = $(built_header_configure) $(built_sys_header_configure)
140 libgstreamer_@GST_API_VERSION@_la_CFLAGS = \
143 -DG_LOG_DOMAIN=g_log_domain_gstreamer \
144 -DGST_API_VERSION=\""$(GST_API_VERSION)"\" \
145 -DGST_DISABLE_DEPRECATED \
149 libgstreamer_@GST_API_VERSION@_la_LIBADD = \
157 libgstreamer_@GST_API_VERSION@_la_LDFLAGS = \
158 $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
160 libgstreamer_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst
178 gstcontrolbinding.h \
183 gstelementmetadata.h \
185 gstdeviceprovider.h \
186 gstdeviceproviderfactory.h \
187 gstelementfactory.h \
222 gsttypefindfactory.h \
229 libgstreamer_@GST_API_VERSION@include_HEADERS = $(gst_headers) math-compat.h
231 nodist_libgstreamer_@GST_API_VERSION@include_HEADERS = \
232 $(built_header_configure) $(built_header_make)
234 configexecincludedir = $(libdir)/gstreamer-@GST_API_VERSION@/include/gst
235 nodist_configexecinclude_HEADERS = $(built_sys_header_configure)
239 glib-compat-private.h \
242 gstelementmetadata.h \
245 gstregistrybinary.h \
246 gstregistrychunks.h \
250 gstenumtypes.h: $(gst_headers)
251 $(AM_V_GEN)$(GLIB_MKENUMS) \
252 --fhead "#ifndef __GST_ENUM_TYPES_H__\n#define __GST_ENUM_TYPES_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
253 --fprod "\n/* enumerations from \"@filename@\" */\n" \
254 --vhead "GType @enum_name@_get_type (void);\n#define GST_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \
255 --ftail "G_END_DECLS\n\n#endif /* __GST_ENUM_TYPES_H__ */" \
258 gstenumtypes.c: $(gst_headers)
259 $(AM_V_GEN)$(GLIB_MKENUMS) \
260 --fhead "#include \"gst_private.h\"\n#include <gst/gst.h>\n#define C_ENUM(v) ((gint) v)\n#define C_FLAGS(v) ((guint) v)\n " \
261 --fprod "\n/* enumerations from \"@filename@\" */" \
262 --vhead "GType\n@enum_name@_get_type (void)\n{\n static gsize id = 0;\n static const G@Type@Value values[] = {" \
263 --vprod " { C_@TYPE@(@VALUENAME@), \"@VALUENAME@\", \"@valuenick@\" }," \
264 --vtail " { 0, NULL, NULL }\n };\n\n if (g_once_init_enter (&id)) {\n GType tmp = g_@type@_register_static (\"@EnumName@\", values);\n g_once_init_leave (&id, tmp);\n }\n\n return (GType) id;\n}" \
267 %.c.gcov: .libs/libgstreamer_@GST_API_VERSION@_la-%.gcda %.c
268 $(GCOV) -b -f -o $^ > $@.out
270 gcov: $(libgstreamer_@GST_API_VERSION@_la_SOURCES:=.gcov)
272 if HAVE_INTROSPECTION
273 BUILT_GIRSOURCES = Gst-@GST_API_VERSION@.gir
275 gir_headers=$(patsubst %,$(srcdir)/%, $(libgstreamer_@GST_API_VERSION@include_HEADERS))
276 gir_headers+=$(patsubst %,$(builddir)/%, $(built_header_make))
277 gir_headers+=$(patsubst %,$(builddir)/%, gstversion.h)
278 gir_sources=$(patsubst %,$(srcdir)/%, $(libgstreamer_@GST_API_VERSION@_la_SOURCES))
279 gir_sources+=$(patsubst %,$(builddir)/%, $(built_source_make))
281 Gst-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstreamer-@GST_API_VERSION@.la
282 $(AM_V_GEN)GST_PLUGIN_SYSTEM_PATH_1_0="" GST_PLUGIN_PATH_1_0="" GST_REGISTRY_UPDATE=no GI_SCANNER_DISABLE_CACHE=yes\
283 $(INTROSPECTION_SCANNER) -v --namespace Gst \
284 --nsversion=@GST_API_VERSION@ \
288 -DIN_GOBJECT_INTROSPECTION=1 \
289 --c-include='gst/gst.h' \
290 --library=libgstreamer-@GST_API_VERSION@.la \
292 --include=GObject-2.0 \
293 --include=GModule-2.0 \
294 --libtool="${LIBTOOL}" \
297 --pkg gmodule-no-export-2.0 \
298 --pkg-export gstreamer-@GST_API_VERSION@ \
299 --add-init-section="$(INTROSPECTION_INIT)" \
304 # INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
305 # install anything - we need to install inside our prefix.
306 girdir = $(datadir)/gir-1.0
307 gir_DATA = $(BUILT_GIRSOURCES)
309 typelibsdir = $(libdir)/girepository-1.0/
311 typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
313 %.typelib: %.gir $(INTROSPECTION_COMPILER)
314 $(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
316 CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA)
319 # try to prevent packaging errors
320 check-libexecdir-consistency:
321 @if test "${GST_PLUGIN_SCANNER_INSTALLED}" != "${libexecdir}/gstreamer-$(GST_API_VERSION)/gst-plugin-scanner"; then \
322 echo "*** Inconsistent libexecdir! Please use ./configure --libexecdir=/foo/bar"; \
323 echo "*** to set the libexecdir and not make libexecdir=/foo/bar or the like."; \
324 echo "*** The same goes for prefix, libdir etc."; \
325 echo "*** ${GST_PLUGIN_SCANNER_INSTALLED} != ${libexecdir}/gstreamer-$(GST_API_VERSION)/gst-plugin-scanner"; \
329 all-local: check-libexecdir-consistency