1 lib_LTLIBRARIES = libgstreamer-@GST_MAJORMINOR@.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 SUBDIRS = $(SUBDIRS_PARSE)
33 # make variables for all generated source and header files to make the
36 built_header_configure = gstconfig.h gstversion.h
37 built_header_make = gstenumtypes.h gstmarshal.h
38 built_source_make = gstenumtypes.c gstmarshal.c
40 EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
41 gstmarshal.list gsttrace.c \
45 # temporarily not used
48 libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
99 gsttypefindfactory.c \
106 # do not put files in the distribution that are generated
107 nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = $(built_source_make)
109 # BUILT_SOURCES are built on make all/check/install before all other targets
111 $(built_header_configure) \
112 $(built_header_make) \
114 # CLEANFILES is for files generated by make
115 CLEANFILES = $(built_header_make) $(built_source_make) $(as_dll_cleanfiles) *.gcno *.gcda *.gcov *.gcov.out
116 # DISTCLEANFILES is for files generated by configure
117 DISTCLEANFILES = $(built_header_configure)
119 libgstreamer_@GST_MAJORMINOR@_la_CFLAGS = \
122 -DG_LOG_DOMAIN=g_log_domain_gstreamer \
123 -DGST_MAJORMINOR=\""$(GST_MAJORMINOR)"\" \
124 -DGST_DISABLE_DEPRECATED \
128 libgstreamer_@GST_MAJORMINOR@_la_LIBADD = \
134 libgstreamer_@GST_MAJORMINOR@_la_LDFLAGS = \
135 $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
137 libgstreamer_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst
156 gstelementmetadata.h \
157 gstelementfactory.h \
190 gsttypefindfactory.h \
197 libgstreamer_@GST_MAJORMINOR@include_HEADERS = $(gst_headers) math-compat.h
199 nodist_libgstreamer_@GST_MAJORMINOR@include_HEADERS = \
200 $(built_header_configure) $(built_header_make)
204 glib-compat-private.h \
207 gstelementmetadata.h \
210 gstregistrybinary.h \
211 gstregistrychunks.h \
214 gstmarshal.h: gstmarshal.list
215 $(AM_V_GEN)glib-genmarshal --header --prefix=gst_marshal $(srcdir)/gstmarshal.list > gstmarshal.h.tmp && \
216 mv gstmarshal.h.tmp gstmarshal.h
218 gstmarshal.c: gstmarshal.list gst_private.h
219 $(AM_V_GEN)echo "#include \"gst_private.h\"" > gstmarshal.c.tmp && \
220 echo "#include \"glib-object.h\"" >> gstmarshal.c.tmp && \
221 echo "#include \"gstmarshal.h\"" >> gstmarshal.c.tmp && \
222 glib-genmarshal --body --prefix=gst_marshal $(srcdir)/gstmarshal.list >> gstmarshal.c.tmp && \
223 mv gstmarshal.c.tmp gstmarshal.c
225 gstenumtypes.h: $(gst_headers)
226 $(AM_V_GEN)glib-mkenums \
227 --fhead "#ifndef __GST_ENUM_TYPES_H__\n#define __GST_ENUM_TYPES_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
228 --fprod "\n/* enumerations from \"@filename@\" */\n" \
229 --vhead "GType @enum_name@_get_type (void);\n#define GST_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \
230 --ftail "G_END_DECLS\n\n#endif /* __GST_ENUM_TYPES_H__ */" \
233 gstenumtypes.c: $(gst_headers)
234 $(AM_V_GEN)glib-mkenums \
235 --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 " \
236 --fprod "\n/* enumerations from \"@filename@\" */" \
237 --vhead "GType\n@enum_name@_get_type (void)\n{\n static gsize id = 0;\n static const G@Type@Value values[] = {" \
238 --vprod " { C_@TYPE@(@VALUENAME@), \"@VALUENAME@\", \"@valuenick@\" }," \
239 --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}" \
242 %.c.gcov: .libs/libgstreamer_@GST_MAJORMINOR@_la-%.gcda %.c
243 $(GCOV) -b -f -o $^ > $@.out
245 gcov: $(libgstreamer_@GST_MAJORMINOR@_la_SOURCES:=.gcov)
247 Android.mk: Makefile.am
248 androgenizer -:PROJECT gstreamer -:SHARED libgstreamer-@GST_MAJORMINOR@ \
250 -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
251 -:SOURCES $(libgstreamer_@GST_MAJORMINOR@_la_SOURCES) \
252 $(nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES) \
253 -:CFLAGS $(DEFS) $(libgstreamer_@GST_MAJORMINOR@_la_CFLAGS) \
254 -:LDFLAGS $(libgstreamer_@GST_MAJORMINOR@_la_LDFLAGS) \
255 $(libgstreamer_@GST_MAJORMINOR@_la_LIBADD) \
258 -:HEADER_TARGET gstreamer-@GST_MAJORMINOR@/gst \
259 -:HEADERS $(libgstreamer_@GST_MAJORMINOR@include_HEADERS) \
260 -:LIBFILTER_STATIC gstparse \
261 -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
264 if HAVE_INTROSPECTION
265 BUILT_GIRSOURCES = Gst-@GST_MAJORMINOR@.gir
267 gir_headers=$(patsubst %,$(srcdir)/%, $(libgstreamer_@GST_MAJORMINOR@include_HEADERS))
268 gir_sources=$(patsubst %,$(srcdir)/%, $(libgstreamer_@GST_MAJORMINOR@_la_SOURCES))
270 Gst-@GST_MAJORMINOR@.gir: $(INTROSPECTION_SCANNER) libgstreamer-@GST_MAJORMINOR@.la
271 $(AM_V_GEN)GST_PLUGIN_SYSTEM_PATH="" GST_PLUGIN_PATH="" GST_REGISTRY_UPDATE=no \
272 $(INTROSPECTION_SCANNER) -v --namespace Gst \
273 --nsversion=@GST_MAJORMINOR@ \
277 -DIN_GOBJECT_INTROSPECTION=1 \
278 -DGST_USE_UNSTABLE_API \
279 --c-include='gst/gst.h' \
280 --library=libgstreamer-0.11.la \
282 --include=GObject-2.0 \
283 --include=GModule-2.0 \
284 --libtool="$(top_builddir)/libtool" \
287 --pkg gmodule-no-export-2.0 \
289 --pkg-export gstreamer-@GST_MAJORMINOR@ \
290 --add-init-section="gst_init(NULL, NULL);" \
295 # INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
296 # install anything - we need to install inside our prefix.
297 girdir = $(datadir)/gir-1.0
298 gir_DATA = $(BUILT_GIRSOURCES)
300 typelibsdir = $(libdir)/girepository-1.0/
302 typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
304 %.typelib: %.gir $(INTROSPECTION_COMPILER)
305 $(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
307 CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA)
310 # try to prevent packaging errors
311 check-libexecdir-consistency:
312 @if test "${GST_PLUGIN_SCANNER_INSTALLED}" != "${libexecdir}/gstreamer-$(GST_MAJORMINOR)/gst-plugin-scanner"; then \
313 echo "*** Inconsistent libexecdir! Please use ./configure --libexecdir=/foo/bar"; \
314 echo "*** to set the libexecdir and not make libexecdir=/foo/bar or the like."; \
315 echo "*** The same goes for prefix, libdir etc."; \
316 echo "*** ${GST_PLUGIN_SCANNER_INSTALLED} != ${libexecdir}/gstreamer-$(GST_MAJORMINOR)/gst-plugin-scanner"; \
320 all-local: check-libexecdir-consistency