1 lib_LTLIBRARIES = libgstreamer-@GST_MAJORMINOR@.la
3 if GST_DISABLE_LOADSAVE
6 GST_LOADSAVE_SRC = gstxml.c
9 if GST_DISABLE_REGISTRY
12 GST_REGISTRY_SRC = gstregistryxml.c
21 GST_PARSE_SRC = gstparse.c
22 GST_PARSE_H = gstparse.h
24 GST_PARSE_LA = parse/libgstparse.la
30 GST_TRACE_SRC = gsttrace.c
33 if GST_DISABLE_ENUMTYPES
36 GST_ENUMTYPES_SRC = gstenumtypes.c
42 GST_INDEX_SRC = gstindex.c gstindexfactory.c
48 GST_PLUGIN_SRC = gstplugin.c
54 GST_URI_SRC = gsturi.c
57 SUBDIRS = $(SUBDIRS_PARSE)
61 # make variables for all generated source and header files to make the
64 built_header_configure = gstconfig.h gstversion.h
65 built_header_make = gstenumtypes.h gstmarshal.h
66 built_source_make = $(GST_ENUMTYPES_SRC) gstmarshal.c
68 EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
69 gstmarshal.list gstxml.c gstparse.c gsttrace.c gstregistryxml.c
71 libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
108 gsttypefindfactory.c \
113 $(GST_REGISTRY_SRC) \
116 # do not put files in the distribution that are generated
117 nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = $(built_source_make)
119 # BUILT_SOURCES are built on make all/check/install before all other targets
121 $(built_header_configure) \
122 $(built_header_make) \
124 # CLEANFILES is for files generated by make
125 CLEANFILES = $(built_header_make) $(built_source_make) $(as_dll_cleanfiles) *.gcno *.gcda *.gcov *.gcov.out
126 # DISTCLEANFILES is for files generated by configure
127 DISTCLEANFILES = $(built_header_configure)
129 libgstreamer_@GST_MAJORMINOR@_la_CFLAGS = \
131 -DG_LOG_DOMAIN=g_log_domain_gstreamer \
132 -DGST_MAJORMINOR=\""$(GST_MAJORMINOR)"\" \
133 -DGST_DISABLE_DEPRECATED \
137 libgstreamer_@GST_MAJORMINOR@_la_LIBADD = \
142 libgstreamer_@GST_MAJORMINOR@_la_LDFLAGS = \
143 $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
145 libgstreamer_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst
160 gstelementfactory.h \
188 gsttypefindfactory.h \
196 libgstreamer_@GST_MAJORMINOR@include_HEADERS = $(gst_headers)
197 nodist_libgstreamer_@GST_MAJORMINOR@include_HEADERS = \
198 $(built_header_configure) $(built_header_make)
205 glib-compat-private.h \
210 gstmarshal.h: gstmarshal.list
211 glib-genmarshal --header --prefix=gst_marshal $(srcdir)/gstmarshal.list > gstmarshal.h.tmp
212 mv gstmarshal.h.tmp gstmarshal.h
214 gstmarshal.c: gstmarshal.list gst_private.h
215 echo "#include \"gst_private.h\"" > gstmarshal.c.tmp
216 echo "#include \"glib-object.h\"" >> gstmarshal.c.tmp
217 echo "#include \"gstmarshal.h\"" >> gstmarshal.c.tmp
218 glib-genmarshal --body --prefix=gst_marshal $(srcdir)/gstmarshal.list >> gstmarshal.c.tmp
219 mv gstmarshal.c.tmp gstmarshal.c
221 gstenumtypes.h: $(gst_headers)
223 --fhead "#ifndef __GST_ENUM_TYPES_H__\n#define __GST_ENUM_TYPES_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
224 --fprod "\n/* enumerations from \"@filename@\" */\n" \
225 --vhead "GType @enum_name@_get_type (void);\n#define GST_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \
226 --ftail "G_END_DECLS\n\n#endif /* __GST_ENUM_TYPES_H__ */" \
229 gstenumtypes.c: $(gst_headers)
231 --fhead "#include \"gst_private.h\"\n#include <gst/gst.h>" \
232 --fprod "\n/* enumerations from \"@filename@\" */" \
233 --vhead "static void\nregister_@enum_name@ (GType* id)\n{\n static const G@Type@Value values[] = {" \
234 --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
235 --vtail " { 0, NULL, NULL }\n };\n *id = g_@type@_register_static (\"@EnumName@\", values);\n}\nGType\n@enum_name@_get_type (void)\n{\n static GType id;\n static GOnce once = G_ONCE_INIT;\n\n g_once (&once, (GThreadFunc)register_@enum_name@, &id);\n return id;\n}\n" \
238 %.c.gcov: .libs/libgstreamer_@GST_MAJORMINOR@_la-%.gcda %.c
239 $(GCOV) -b -f -o $^ > $@.out
241 gcov: $(libgstreamer_@GST_MAJORMINOR@_la_SOURCES:=.gcov)