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 = \
100 gsttypefindfactory.c \
107 # do not put files in the distribution that are generated
108 nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = $(built_source_make)
110 # BUILT_SOURCES are built on make all/check/install before all other targets
112 $(built_header_configure) \
113 $(built_header_make) \
115 # CLEANFILES is for files generated by make
116 CLEANFILES = $(built_header_make) $(built_source_make) $(as_dll_cleanfiles) *.gcno *.gcda *.gcov *.gcov.out
117 # DISTCLEANFILES is for files generated by configure
118 DISTCLEANFILES = $(built_header_configure)
120 libgstreamer_@GST_MAJORMINOR@_la_CFLAGS = \
123 -DG_LOG_DOMAIN=g_log_domain_gstreamer \
124 -DGST_MAJORMINOR=\""$(GST_MAJORMINOR)"\" \
125 -DGST_DISABLE_DEPRECATED \
129 libgstreamer_@GST_MAJORMINOR@_la_LIBADD = \
135 libgstreamer_@GST_MAJORMINOR@_la_LDFLAGS = \
136 $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
138 libgstreamer_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst
158 gstelementmetadata.h \
159 gstelementfactory.h \
192 gsttypefindfactory.h \
199 libgstreamer_@GST_MAJORMINOR@include_HEADERS = $(gst_headers) math-compat.h
201 nodist_libgstreamer_@GST_MAJORMINOR@include_HEADERS = \
202 $(built_header_configure) $(built_header_make)
206 glib-compat-private.h \
209 gstelementmetadata.h \
212 gstregistrybinary.h \
213 gstregistrychunks.h \
216 gstmarshal.h: gstmarshal.list
217 $(AM_V_GEN)glib-genmarshal --header --prefix=gst_marshal $(srcdir)/gstmarshal.list > gstmarshal.h.tmp && \
218 mv gstmarshal.h.tmp gstmarshal.h
220 gstmarshal.c: gstmarshal.list gst_private.h
221 $(AM_V_GEN)echo "#include \"gst_private.h\"" > gstmarshal.c.tmp && \
222 echo "#include \"glib-object.h\"" >> gstmarshal.c.tmp && \
223 echo "#include \"gstmarshal.h\"" >> gstmarshal.c.tmp && \
224 glib-genmarshal --body --prefix=gst_marshal $(srcdir)/gstmarshal.list >> gstmarshal.c.tmp && \
225 mv gstmarshal.c.tmp gstmarshal.c
227 gstenumtypes.h: $(gst_headers)
228 $(AM_V_GEN)glib-mkenums \
229 --fhead "#ifndef __GST_ENUM_TYPES_H__\n#define __GST_ENUM_TYPES_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
230 --fprod "\n/* enumerations from \"@filename@\" */\n" \
231 --vhead "GType @enum_name@_get_type (void);\n#define GST_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \
232 --ftail "G_END_DECLS\n\n#endif /* __GST_ENUM_TYPES_H__ */" \
235 gstenumtypes.c: $(gst_headers)
236 $(AM_V_GEN)glib-mkenums \
237 --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 " \
238 --fprod "\n/* enumerations from \"@filename@\" */" \
239 --vhead "GType\n@enum_name@_get_type (void)\n{\n static gsize id = 0;\n static const G@Type@Value values[] = {" \
240 --vprod " { C_@TYPE@(@VALUENAME@), \"@VALUENAME@\", \"@valuenick@\" }," \
241 --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}" \
244 %.c.gcov: .libs/libgstreamer_@GST_MAJORMINOR@_la-%.gcda %.c
245 $(GCOV) -b -f -o $^ > $@.out
247 gcov: $(libgstreamer_@GST_MAJORMINOR@_la_SOURCES:=.gcov)
249 Android.mk: Makefile.am
250 androgenizer -:PROJECT gstreamer -:SHARED libgstreamer-@GST_MAJORMINOR@ \
252 -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
253 -:SOURCES $(libgstreamer_@GST_MAJORMINOR@_la_SOURCES) \
254 $(nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES) \
255 -:CFLAGS $(DEFS) $(libgstreamer_@GST_MAJORMINOR@_la_CFLAGS) \
256 -:LDFLAGS $(libgstreamer_@GST_MAJORMINOR@_la_LDFLAGS) \
257 $(libgstreamer_@GST_MAJORMINOR@_la_LIBADD) \
260 -:HEADER_TARGET gstreamer-@GST_MAJORMINOR@/gst \
261 -:HEADERS $(libgstreamer_@GST_MAJORMINOR@include_HEADERS) \
262 -:LIBFILTER_STATIC gstparse \
263 -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
266 if HAVE_INTROSPECTION
267 BUILT_GIRSOURCES = Gst-@GST_MAJORMINOR@.gir
269 gir_headers=$(patsubst %,$(srcdir)/%, $(libgstreamer_@GST_MAJORMINOR@include_HEADERS))
270 gir_sources=$(patsubst %,$(srcdir)/%, $(libgstreamer_@GST_MAJORMINOR@_la_SOURCES))
272 Gst-@GST_MAJORMINOR@.gir: $(INTROSPECTION_SCANNER) libgstreamer-@GST_MAJORMINOR@.la
273 $(AM_V_GEN)GST_PLUGIN_SYSTEM_PATH="" GST_PLUGIN_PATH="" GST_REGISTRY_UPDATE=no \
274 $(INTROSPECTION_SCANNER) -v --namespace Gst \
275 --nsversion=@GST_MAJORMINOR@ \
279 -DIN_GOBJECT_INTROSPECTION=1 \
280 -DGST_USE_UNSTABLE_API \
281 --c-include='gst/gst.h' \
282 --library=libgstreamer-0.11.la \
284 --include=GObject-2.0 \
285 --include=GModule-2.0 \
286 --libtool="$(top_builddir)/libtool" \
289 --pkg gmodule-no-export-2.0 \
291 --pkg-export gstreamer-@GST_MAJORMINOR@ \
292 --add-init-section="gst_init(NULL, NULL);" \
297 # INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
298 # install anything - we need to install inside our prefix.
299 girdir = $(datadir)/gir-1.0
300 gir_DATA = $(BUILT_GIRSOURCES)
302 typelibsdir = $(libdir)/girepository-1.0/
304 typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
306 %.typelib: %.gir $(INTROSPECTION_COMPILER)
307 $(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
309 CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA)
312 # try to prevent packaging errors
313 check-libexecdir-consistency:
314 @if test "${GST_PLUGIN_SCANNER_INSTALLED}" != "${libexecdir}/gstreamer-$(GST_MAJORMINOR)/gst-plugin-scanner"; then \
315 echo "*** Inconsistent libexecdir! Please use ./configure --libexecdir=/foo/bar"; \
316 echo "*** to set the libexecdir and not make libexecdir=/foo/bar or the like."; \
317 echo "*** The same goes for prefix, libdir etc."; \
318 echo "*** ${GST_PLUGIN_SCANNER_INSTALLED} != ${libexecdir}/gstreamer-$(GST_MAJORMINOR)/gst-plugin-scanner"; \
322 all-local: check-libexecdir-consistency