bufferpool: add simple bufferpool helper object
[platform/upstream/gstreamer.git] / gst / Makefile.am
1 lib_LTLIBRARIES = libgstreamer-@GST_MAJORMINOR@.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 SUBDIRS = $(SUBDIRS_PARSE)
30
31 DIST_SUBDIRS = parse
32
33 # make variables for all generated source and header files to make the
34 # distinction clear
35
36 built_header_configure = gstconfig.h gstversion.h
37 built_header_make = gstenumtypes.h gstmarshal.h
38 built_source_make = gstenumtypes.c gstmarshal.c
39
40 EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
41         gstmarshal.list gsttrace.c \
42         gstregistrybinary.c
43
44
45 # temporarily not used
46 #       glib-compat.c
47
48 libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
49         gst.c                   \
50         gstobject.c             \
51         gstbin.c                \
52         gstbuffer.c             \
53         gstbufferlist.c         \
54         gstbufferpool.c         \
55         gstbus.c                \
56         gstcaps.c               \
57         gstchildproxy.c         \
58         gstclock.c              \
59         gstdatetime.c           \
60         gstdebugutils.c         \
61         gstelement.c            \
62         gstelementfactory.c     \
63         gsterror.c              \
64         gstevent.c              \
65         gstfilter.c             \
66         gstformat.c             \
67         gstghostpad.c           \
68         gstindex.c              \
69         gstindexfactory.c       \
70         gstinfo.c               \
71         gstinterface.c          \
72         gstiterator.c           \
73         gstatomicqueue.c        \
74         gstmessage.c            \
75         gstmeta.c               \
76         gstminiobject.c         \
77         gstpad.c                \
78         gstpadtemplate.c        \
79         gstparamspecs.c         \
80         gstpipeline.c           \
81         gstplugin.c             \
82         gstpluginfeature.c      \
83         gstpluginloader.c       \
84         gstpoll.c               \
85         gstpreset.c             \
86         gstquark.c              \
87         gstquery.c              \
88         gstregistry.c           \
89         gstregistrychunks.c     \
90         gstsegment.c            \
91         gststructure.c          \
92         gstsystemclock.c        \
93         gsttaglist.c            \
94         gsttagsetter.c          \
95         gsttask.c               \
96         gsttaskpool.c           \
97         $(GST_TRACE_SRC)        \
98         gsttypefind.c           \
99         gsttypefindfactory.c    \
100         gsturi.c                \
101         gstutils.c              \
102         gstvalue.c              \
103         gstparse.c              \
104         $(GST_REGISTRY_SRC)
105
106 # do not put files in the distribution that are generated
107 nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = $(built_source_make)
108
109 # BUILT_SOURCES are built on make all/check/install before all other targets
110 BUILT_SOURCES = \
111         $(built_header_configure)       \
112         $(built_header_make)            \
113         $(built_source_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)
118
119 libgstreamer_@GST_MAJORMINOR@_la_CFLAGS =               \
120         -D_GNU_SOURCE                                   \
121         -DGST_EXPORTS                                   \
122         -DG_LOG_DOMAIN=g_log_domain_gstreamer           \
123         -DGST_MAJORMINOR=\""$(GST_MAJORMINOR)"\"        \
124         -DGST_DISABLE_DEPRECATED                        \
125         $(VALGRIND_CFLAGS)                              \
126         $(GST_ALL_CFLAGS)
127
128 libgstreamer_@GST_MAJORMINOR@_la_LIBADD =               \
129         $(GST_PARSE_LA)                                 \
130         $(GST_ALL_LIBS)                                 \
131         $(WIN32_LIBS)                                   \
132         $(XML_LIBS)                                     \
133         $(LIBM)
134
135 libgstreamer_@GST_MAJORMINOR@_la_LDFLAGS =              \
136         $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
137
138 libgstreamer_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst
139
140 gst_headers =                   \
141         gst.h                   \
142         glib-compat.h           \
143         gstobject.h             \
144         gstbin.h                \
145         gstbuffer.h             \
146         gstbufferlist.h         \
147         gstbufferpool.h         \
148         gstbus.h                \
149         gstcaps.h               \
150         gstchildproxy.h         \
151         gstclock.h              \
152         gstcompat.h             \
153         gstdatetime.h           \
154         gstdebugutils.h         \
155         gstelement.h            \
156         gstelementfactory.h     \
157         gsterror.h              \
158         gstevent.h              \
159         gstfilter.h             \
160         gstformat.h             \
161         gstghostpad.h           \
162         gstindex.h              \
163         gstindexfactory.h       \
164         gstinfo.h               \
165         gstinterface.h          \
166         gstiterator.h           \
167         gstatomicqueue.h        \
168         gstmacros.h             \
169         gstmessage.h            \
170         gstmeta.h               \
171         gstminiobject.h         \
172         gstpad.h                \
173         gstpadtemplate.h        \
174         gstparamspecs.h         \
175         gstpipeline.h           \
176         gstplugin.h             \
177         gstpluginfeature.h      \
178         gstpoll.h               \
179         gstpreset.h             \
180         gstquery.h              \
181         gstsegment.h            \
182         gststructure.h          \
183         gstsystemclock.h        \
184         gsttaglist.h            \
185         gsttagsetter.h          \
186         gsttask.h               \
187         gsttaskpool.h           \
188         gsttrace.h              \
189         gsttypefind.h           \
190         gsttypefindfactory.h    \
191         gsturi.h                \
192         gstutils.h              \
193         gstvalue.h              \
194         gstregistry.h           \
195         gstparse.h
196
197 libgstreamer_@GST_MAJORMINOR@include_HEADERS = $(gst_headers) math-compat.h
198
199 nodist_libgstreamer_@GST_MAJORMINOR@include_HEADERS = \
200         $(built_header_configure) $(built_header_make)
201
202 noinst_HEADERS =                \
203         gettext.h               \
204         glib-compat-private.h   \
205         gst-i18n-lib.h          \
206         gst-i18n-app.h          \
207         gstelementmetadata.h    \
208         gstpluginloader.h       \
209         gstquark.h              \
210         gstregistrybinary.h     \
211         gstregistrychunks.h     \
212         gst_private.h
213
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
217
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
224
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__ */" \
231         $^ > gstenumtypes.h
232
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}" \
240         $^ > gstenumtypes.c
241
242 %.c.gcov: .libs/libgstreamer_@GST_MAJORMINOR@_la-%.gcda %.c
243         $(GCOV) -b -f -o $^ > $@.out
244
245 gcov: $(libgstreamer_@GST_MAJORMINOR@_la_SOURCES:=.gcov)
246
247 if HAVE_INTROSPECTION
248 BUILT_GIRSOURCES = Gst-@GST_MAJORMINOR@.gir
249
250 gir_headers=$(patsubst %,$(srcdir)/%, $(libgstreamer_@GST_MAJORMINOR@include_HEADERS))
251 gir_sources=$(patsubst %,$(srcdir)/%, $(libgstreamer_@GST_MAJORMINOR@_la_SOURCES))
252
253 Gst-@GST_MAJORMINOR@.gir: $(INTROSPECTION_SCANNER) libgstreamer-@GST_MAJORMINOR@.la
254         $(AM_V_GEN)$(INTROSPECTION_SCANNER) -v --namespace Gst \
255                 --nsversion=@GST_MAJORMINOR@ \
256                 -I$(top_srcdir) \
257                 -I$(top_builddir) \
258                 -DIN_GOBJECT_INTROSPECTION=1 \
259                 --c-include='gst/gst.h' \
260                 --library=libgstreamer-0.11.la \
261                 --include=GLib-2.0 \
262                 --include=GObject-2.0 \
263                 --include=GModule-2.0 \
264                 --libtool="$(top_builddir)/libtool" \
265                 --pkg glib-2.0 \
266                 --pkg gobject-2.0 \
267                 --pkg gmodule-no-export-2.0 \
268                 --pkg gthread-2.0 \
269                 --pkg-export gstreamer-0.11 \
270                 --output $@ \
271                 $(gir_headers) \
272                 $(gir_sources)
273
274 # INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
275 # install anything - we need to install inside our prefix.
276 girdir = $(datadir)/gir-1.0
277 gir_DATA = $(BUILT_GIRSOURCES)
278
279 typelibsdir = $(libdir)/girepository-1.0/
280
281 typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
282
283 %.typelib: %.gir $(INTROSPECTION_COMPILER)
284         $(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
285
286 CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA)
287 endif
288
289 # try to prevent packaging errors
290 check-libexecdir-consistency:
291         @if test "${GST_PLUGIN_SCANNER_INSTALLED}" != "${libexecdir}/gstreamer-$(GST_MAJORMINOR)/gst-plugin-scanner"; then \
292           echo "*** Inconsistent libexecdir! Please use ./configure --libexecdir=/foo/bar"; \
293           echo "*** to set the libexecdir and not make libexecdir=/foo/bar or the like."; \
294           echo "*** The same goes for prefix, libdir etc."; \
295           echo "*** ${GST_PLUGIN_SCANNER_INSTALLED} != ${libexecdir}/gstreamer-$(GST_MAJORMINOR)/gst-plugin-scanner"; \
296           exit 1; \
297         fi
298
299 all-local: check-libexecdir-consistency