Merge branch 'master' into 0.11
[platform/upstream/gst-plugins-base.git] / gst-libs / gst / tag / Makefile.am
1 libgsttagincludedir = \
2         $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/tag
3
4 libgsttaginclude_HEADERS = \
5         tag.h gsttagdemux.h gsttagmux.h xmpwriter.h
6
7 lib_LTLIBRARIES = libgsttag-@GST_MAJORMINOR@.la
8
9 libgsttag_@GST_MAJORMINOR@_la_SOURCES = \
10         gstvorbistag.c gstid3tag.c gstxmptag.c gstexiftag.c \
11         lang.c licenses.c tags.c gsttagdemux.c gsttagmux.c \
12         gsttageditingprivate.c id3v2.c id3v2frames.c xmpwriter.c
13
14 libgsttag_@GST_MAJORMINOR@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
15         $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(ZLIB_CFLAGS) \
16         -DLICENSE_TRANSLATIONS_PATH=\"$(pkgdatadir)/license-translations.dict\"
17 libgsttag_@GST_MAJORMINOR@_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) $(ZLIB_LIBS)
18 libgsttag_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
19
20 # lang-tables.dat contains generated static data and is included by lang.c
21 # licenses-tables.dat contains generated data and is included by licenses.c
22 EXTRA_DIST = lang-tables.dat licenses-tables.dat license-translations.dict
23
24 noinst_HEADERS = gsttageditingprivate.h id3v2.h
25
26 if HAVE_INTROSPECTION
27 BUILT_GIRSOURCES = GstTag-@GST_MAJORMINOR@.gir
28
29 gir_headers=$(patsubst %,$(srcdir)/%, $(libgsttaginclude_HEADERS))
30 gir_sources=$(patsubst %,$(srcdir)/%, $(libgsttag_@GST_MAJORMINOR@_la_SOURCES))
31 gir_cincludes=$(patsubst %,--c-include='gst/tag/%',$(libgsttaginclude_HEADERS))
32
33 GstTag-@GST_MAJORMINOR@.gir: $(INTROSPECTION_SCANNER) libgsttag-@GST_MAJORMINOR@.la
34         $(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
35                 GST_PLUGIN_SYSTEM_PATH="" GST_PLUGIN_PATH="" GST_REGISTRY_UPDATE=no \
36                 $(INTROSPECTION_SCANNER) -v --namespace GstTag \
37                 --nsversion=@GST_MAJORMINOR@ \
38                 --strip-prefix=Gst \
39                 $(gir_cincludes) \
40                 -DGST_USE_UNSTABLE_API \
41                 --add-include-path=`$(PKG_CONFIG) --variable=girdir gstreamer-@GST_MAJORMINOR@` \
42                 --add-include-path=`$(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_MAJORMINOR@` \
43                 --library=libgsttag-@GST_MAJORMINOR@.la \
44                 --include=Gst-@GST_MAJORMINOR@ \
45                 --include=GstBase-@GST_MAJORMINOR@ \
46                 --libtool="$(top_builddir)/libtool" \
47                 --pkg gstreamer-@GST_MAJORMINOR@ \
48                 --pkg gstreamer-base-@GST_MAJORMINOR@ \
49                 --pkg-export gstreamer-tag-@GST_MAJORMINOR@ \
50                 --add-init-section="gst_init(NULL,NULL);" \
51                 --output $@ \
52                 $(gir_headers) \
53                 $(gir_sources)
54
55 # INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
56 # install anything - we need to install inside our prefix.
57 girdir = $(datadir)/gir-1.0
58 gir_DATA = $(BUILT_GIRSOURCES)
59
60 typelibsdir = $(libdir)/girepository-1.0/
61
62 typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
63
64 %.typelib: %.gir $(INTROSPECTION_COMPILER)
65         $(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
66                 $(INTROSPECTION_COMPILER) \
67                 --includedir=$(srcdir) \
68                 --includedir=$(builddir) \
69                 --includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-@GST_MAJORMINOR@` \
70                 --includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_MAJORMINOR@` \
71                 $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
72
73 CLEANFILES = $(BUILT_GIRSOURCES) $(typelibs_DATA)
74 endif
75
76 # little program that reads iso_639.xml and outputs tables for us as fallback
77 # for when iso-codes are not available (and so we don't have to read the xml
78 # just to map codes)
79 mklangtables_SOURCES = mklangtables.c
80 mklangtables_CFLAGS = $(GST_CFLAGS)
81 mklangtables_LDADD = $(GST_LIBS)
82
83 mklicensestables_SOURCES = mklicensestables.c
84 mklicensestables_CFLAGS = $(GST_CFLAGS)
85 mklicensestables_LDADD = $(GST_LIBS)
86
87 EXTRA_PROGRAMS = mklangtables mklicensestables
88
89 update-isocodes: mklangtables
90         $(builddir)/mklangtables > $(srcdir)/lang-tables.dat && \
91                 echo "Updated lang-tables.dat"
92
93 update-licenses: mklicensestables
94         $(builddir)/mklicensestables \
95                 --translation-dictionary=$(srcdir)/license-translations.dict \
96                 > $(srcdir)/licenses-tables.dat && \
97                 echo "Updated licenses-tables.dat and license-translations.dict"
98
99 #if USE_NLS
100 # Yes, this is not great, but it's only an implementation detail. The
101 # translations come from an external source here, so we don't want the
102 # strings retranslated, but also we don't want to create 30 1kB .mo files,
103 # so just do something for now, we can change it later if someone really cares.
104 licensetransdir = $(pkgdatadir)
105 licensetrans_DATA = $(srcdir)/license-translations.dict
106 #endif
107
108 Android.mk: Makefile.am
109         androgenizer -:PROJECT libgsttag -:SHARED libgsttag-@GST_MAJORMINOR@ \
110          -:TAGS eng debug \
111          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
112          -:SOURCES $(libgsttag_@GST_MAJORMINOR@_la_SOURCES) \
113          -:CFLAGS $(DEFS) $(libgsttag_@GST_MAJORMINOR@_la_CFLAGS) \
114          -:LDFLAGS $(libgsttag_@GST_MAJORMINOR@_la_LDFLAGS) \
115                    $(libgsttag_@GST_MAJORMINOR@_la_LIBADD) \
116                    -ldl \
117          -:HEADER_TARGET gstreamer-@GST_MAJORMINOR@/gst/tag \
118          -:HEADERS $(libgsttaginclude_HEADERS) \
119          -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
120         > $@