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