tracer: initial prototype for the tracing subsystem
[platform/upstream/gstreamer.git] / gst / Makefile.am
1 lib_LTLIBRARIES = libgstreamer-@GST_API_VERSION@.la
2
3 if GST_DISABLE_REGISTRY
4 GST_REGISTRY_SRC =
5 else
6 GST_REGISTRY_SRC = gstregistrybinary.c
7 endif
8
9 if GST_DISABLE_PARSE
10 SUBDIRS_PARSE =
11 GST_PARSE_LA =
12 else
13 SUBDIRS_PARSE = parse
14 GST_PARSE_LA = parse/libgstparse.la
15 endif
16
17 if GST_DISABLE_TRACE
18 GST_TRACE_SRC =
19 else
20 GST_TRACE_SRC = gsttrace.c
21 endif
22
23 if GST_DISABLE_PLUGIN
24 GST_PLUGIN_SRC =
25 else
26 GST_PLUGIN_SRC = gstplugin.c
27 endif
28
29 if !GST_DISABLE_GST_DEBUG
30 SUBDIRS_PRINTF = printf
31 GST_PRINTF_LA = printf/libgstprintf.la
32 else
33 SUBDIRS_PRINTF =
34 GST_PRINTF_LA =
35 endif
36
37 SUBDIRS = $(SUBDIRS_PARSE) $(SUBDIRS_PRINTF)
38
39 DIST_SUBDIRS = parse printf
40
41 # make variables for all generated source and header files to make the
42 # distinction clear
43
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
48
49 EXTRA_libgstreamer_@GST_API_VERSION@_la_SOURCES = \
50         gsttrace.c \
51         gstregistrybinary.c
52
53
54 # temporarily not used
55 #       glib-compat.c
56
57 libgstreamer_@GST_API_VERSION@_la_SOURCES = \
58         gst.c                   \
59         gstobject.c             \
60         gstallocator.c          \
61         gstbin.c                \
62         gstbuffer.c             \
63         gstbufferlist.c         \
64         gstbufferpool.c         \
65         gstbus.c                \
66         gstcaps.c               \
67         gstcapsfeatures.c       \
68         gstchildproxy.c         \
69         gstclock.c              \
70         gstclock-linreg.c       \
71         gstcontext.c \
72         gstcontrolbinding.c \
73         gstcontrolsource.c \
74         gstdatetime.c           \
75         gstdebugutils.c         \
76         gstdevice.c             \
77         gstdevicemonitor.c      \
78         gstdeviceprovider.c     \
79         gstdeviceproviderfactory.c \
80         gstelement.c            \
81         gstelementfactory.c     \
82         gsterror.c              \
83         gstevent.c              \
84         gstformat.c             \
85         gstghostpad.c           \
86         gstinfo.c               \
87         gstiterator.c           \
88         gstatomicqueue.c        \
89         gstmessage.c            \
90         gstmeta.c               \
91         gstmemory.c             \
92         gstminiobject.c         \
93         gstpad.c                \
94         gstpadtemplate.c        \
95         gstparamspecs.c         \
96         gstpipeline.c           \
97         gstplugin.c             \
98         gstpluginfeature.c      \
99         gstpluginloader.c       \
100         gstpoll.c               \
101         gstpreset.c             \
102         gstprotection.c         \
103         gstquark.c              \
104         gstquery.c              \
105         gstregistry.c           \
106         gstregistrychunks.c     \
107         gstsample.c             \
108         gstsegment.c            \
109         gststructure.c          \
110         gstsystemclock.c        \
111         gsttaglist.c            \
112         gsttagsetter.c          \
113         gsttask.c               \
114         gsttaskpool.c           \
115         gsttoc.c                \
116         gsttocsetter.c          \
117         $(GST_TRACE_SRC)        \
118         gsttracer.c             \
119         gsttracerfactory.c      \
120         gsttypefind.c           \
121         gsttypefindfactory.c    \
122         gsturi.c                \
123         gstutils.c              \
124         gstvalue.c              \
125         gstparse.c              \
126         $(GST_REGISTRY_SRC)
127
128 # do not put files in the distribution that are generated
129 nodist_libgstreamer_@GST_API_VERSION@_la_SOURCES = $(built_source_make)
130
131 # BUILT_SOURCES are built on make all/check/install before all other targets
132 BUILT_SOURCES = \
133         $(built_header_configure)       \
134         $(built_sys_header_configure)   \
135         $(built_header_make)            \
136         $(built_source_make)
137 # CLEANFILES is for files generated by make
138 CLEANFILES = $(built_header_make) $(built_source_make) $(as_dll_cleanfiles) *.gcno *.gcda *.gcov *.gcov.out
139 # DISTCLEANFILES is for files generated by configure
140 DISTCLEANFILES = $(built_header_configure) $(built_sys_header_configure)
141
142 libgstreamer_@GST_API_VERSION@_la_CFLAGS =              \
143         -D_GNU_SOURCE                                   \
144         -DGST_EXPORTS                                   \
145         -DG_LOG_DOMAIN=g_log_domain_gstreamer           \
146         -DGST_API_VERSION=\""$(GST_API_VERSION)"\"      \
147         -DGST_DISABLE_DEPRECATED                        \
148         $(VALGRIND_CFLAGS)                              \
149         $(GST_ALL_CFLAGS)
150
151 libgstreamer_@GST_API_VERSION@_la_LIBADD =              \
152         $(GST_PARSE_LA)                                 \
153         $(GST_PRINTF_LA)                                \
154         $(GST_ALL_LIBS)                                 \
155         $(WIN32_LIBS)                                   \
156         $(SOCKET_LIBS)                                  \
157         $(LIBM)
158
159 libgstreamer_@GST_API_VERSION@_la_LDFLAGS =             \
160         $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
161
162 libgstreamer_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst
163
164 gst_headers =                   \
165         gst.h                   \
166         glib-compat.h           \
167         gstobject.h             \
168         gstallocator.h          \
169         gstbin.h                \
170         gstbuffer.h             \
171         gstbufferlist.h         \
172         gstbufferpool.h         \
173         gstbus.h                \
174         gstcaps.h               \
175         gstcapsfeatures.h       \
176         gstchildproxy.h         \
177         gstclock.h              \
178         gstcompat.h             \
179         gstcontext.h \
180         gstcontrolbinding.h \
181         gstcontrolsource.h \
182         gstdatetime.h           \
183         gstdebugutils.h         \
184         gstelement.h            \
185         gstelementmetadata.h    \
186         gstdevice.h             \
187         gstdeviceprovider.h     \
188         gstdeviceproviderfactory.h \
189         gstelementfactory.h     \
190         gsterror.h              \
191         gstevent.h              \
192         gstformat.h             \
193         gstghostpad.h           \
194         gstdevicemonitor.h      \
195         gstinfo.h               \
196         gstiterator.h           \
197         gstatomicqueue.h        \
198         gstmacros.h             \
199         gstmessage.h            \
200         gstmeta.h               \
201         gstmemory.h             \
202         gstminiobject.h         \
203         gstpad.h                \
204         gstpadtemplate.h        \
205         gstparamspecs.h         \
206         gstpipeline.h           \
207         gstplugin.h             \
208         gstpluginfeature.h      \
209         gstpoll.h               \
210         gstpreset.h             \
211         gstprotection.h         \
212         gstquery.h              \
213         gstsample.h             \
214         gstsegment.h            \
215         gststructure.h          \
216         gstsystemclock.h        \
217         gsttaglist.h            \
218         gsttagsetter.h          \
219         gsttask.h               \
220         gsttaskpool.h           \
221         gsttoc.h                \
222         gsttocsetter.h          \
223         gsttracer.h             \
224         gsttracerfactory.h      \
225         gsttypefind.h           \
226         gsttypefindfactory.h    \
227         gsturi.h                \
228         gstutils.h              \
229         gstvalue.h              \
230         gstregistry.h           \
231         gstparse.h
232
233 libgstreamer_@GST_API_VERSION@include_HEADERS = $(gst_headers) math-compat.h
234
235 nodist_libgstreamer_@GST_API_VERSION@include_HEADERS = \
236         $(built_header_configure) $(built_header_make)
237
238 configexecincludedir = $(libdir)/gstreamer-@GST_API_VERSION@/include/gst
239 nodist_configexecinclude_HEADERS = $(built_sys_header_configure)
240
241 noinst_HEADERS =                \
242         gettext.h               \
243         glib-compat-private.h   \
244         gst-i18n-lib.h          \
245         gst-i18n-app.h          \
246         gstelementmetadata.h    \
247         gstpluginloader.h       \
248         gstquark.h              \
249         gstregistrybinary.h     \
250         gstregistrychunks.h     \
251         gsttrace.h              \
252         gst_private.h
253
254 gstenumtypes.h: $(gst_headers)
255         $(AM_V_GEN)$(GLIB_MKENUMS) \
256         --fhead "#ifndef __GST_ENUM_TYPES_H__\n#define __GST_ENUM_TYPES_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
257         --fprod "\n/* enumerations from \"@filename@\" */\n" \
258         --vhead "GType @enum_name@_get_type (void);\n#define GST_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n"         \
259         --ftail "G_END_DECLS\n\n#endif /* __GST_ENUM_TYPES_H__ */" \
260         $^ > gstenumtypes.h
261
262 gstenumtypes.c: $(gst_headers)
263         $(AM_V_GEN)$(GLIB_MKENUMS) \
264         --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 " \
265         --fprod "\n/* enumerations from \"@filename@\" */" \
266         --vhead "GType\n@enum_name@_get_type (void)\n{\n  static gsize id = 0;\n  static const G@Type@Value values[] = {"     \
267         --vprod "    { C_@TYPE@(@VALUENAME@), \"@VALUENAME@\", \"@valuenick@\" }," \
268         --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}" \
269         $^ > gstenumtypes.c
270
271 %.c.gcov: .libs/libgstreamer_@GST_API_VERSION@_la-%.gcda %.c
272         $(GCOV) -b -f -o $^ > $@.out
273
274 gcov: $(libgstreamer_@GST_API_VERSION@_la_SOURCES:=.gcov)
275
276 if HAVE_INTROSPECTION
277 BUILT_GIRSOURCES = Gst-@GST_API_VERSION@.gir
278
279 gir_headers=$(patsubst %,$(srcdir)/%, $(libgstreamer_@GST_API_VERSION@include_HEADERS))
280 gir_headers+=$(patsubst %,$(builddir)/%, $(built_header_make))
281 gir_headers+=$(patsubst %,$(builddir)/%, gstversion.h)
282 gir_sources=$(patsubst %,$(srcdir)/%, $(libgstreamer_@GST_API_VERSION@_la_SOURCES))
283 gir_sources+=$(patsubst %,$(builddir)/%, $(built_source_make))
284
285 Gst-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstreamer-@GST_API_VERSION@.la
286         $(AM_V_GEN)GST_PLUGIN_SYSTEM_PATH_1_0="" GST_PLUGIN_PATH_1_0="" GST_REGISTRY_UPDATE=no GI_SCANNER_DISABLE_CACHE=yes\
287                 $(INTROSPECTION_SCANNER) -v --namespace Gst \
288                 --nsversion=@GST_API_VERSION@ \
289                 --warn-all \
290                 -I$(top_srcdir) \
291                 -I$(top_builddir) \
292                 -DIN_GOBJECT_INTROSPECTION=1 \
293                 --c-include='gst/gst.h' \
294                 --library=libgstreamer-@GST_API_VERSION@.la \
295                 --include=GLib-2.0 \
296                 --include=GObject-2.0 \
297                 --include=GModule-2.0 \
298                 --libtool="${LIBTOOL}" \
299                 --pkg glib-2.0 \
300                 --pkg gobject-2.0 \
301                 --pkg gmodule-no-export-2.0 \
302                 --pkg-export gstreamer-@GST_API_VERSION@ \
303                 --add-init-section="$(INTROSPECTION_INIT)" \
304                 --output $@ \
305                 $(gir_headers) \
306                 $(gir_sources)
307
308 # INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
309 # install anything - we need to install inside our prefix.
310 girdir = $(datadir)/gir-1.0
311 gir_DATA = $(BUILT_GIRSOURCES)
312
313 typelibsdir = $(libdir)/girepository-1.0/
314
315 typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
316
317 %.typelib: %.gir $(INTROSPECTION_COMPILER)
318         $(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
319
320 CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA)
321 endif
322
323 # try to prevent packaging errors
324 check-libexecdir-consistency:
325         @if test "${GST_PLUGIN_SCANNER_INSTALLED}" != "${libexecdir}/gstreamer-$(GST_API_VERSION)/gst-plugin-scanner"; then \
326           echo "*** Inconsistent libexecdir! Please use ./configure --libexecdir=/foo/bar"; \
327           echo "*** to set the libexecdir and not make libexecdir=/foo/bar or the like."; \
328           echo "*** The same goes for prefix, libdir etc."; \
329           echo "*** ${GST_PLUGIN_SCANNER_INSTALLED} != ${libexecdir}/gstreamer-$(GST_API_VERSION)/gst-plugin-scanner"; \
330           exit 1; \
331         fi
332
333 all-local: check-libexecdir-consistency