libgsttagincludedir = \ $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/tag libgsttaginclude_HEADERS = \ tag.h gsttagdemux.h gsttagmux.h xmpwriter.h lib_LTLIBRARIES = libgsttag-@GST_MAJORMINOR@.la libgsttag_@GST_MAJORMINOR@_la_SOURCES = \ gstvorbistag.c gstid3tag.c gstxmptag.c gstexiftag.c \ lang.c licenses.c tags.c gsttagdemux.c gsttagmux.c \ gsttageditingprivate.c id3v2.c id3v2frames.c xmpwriter.c libgsttag_@GST_MAJORMINOR@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \ $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(ZLIB_CFLAGS) \ -DLICENSE_TRANSLATIONS_PATH=\"$(pkgdatadir)/license-translations.dict\" libgsttag_@GST_MAJORMINOR@_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) $(ZLIB_LIBS) libgsttag_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS) # lang-tables.dat contains generated static data and is included by lang.c # licenses-tables.dat contains generated data and is included by licenses.c EXTRA_DIST = lang-tables.dat licenses-tables.dat license-translations.dict noinst_HEADERS = gsttageditingprivate.h id3v2.h if HAVE_INTROSPECTION BUILT_GIRSOURCES = GstTag-@GST_MAJORMINOR@.gir gir_headers=$(patsubst %,$(srcdir)/%, $(libgsttaginclude_HEADERS)) gir_sources=$(patsubst %,$(srcdir)/%, $(libgsttag_@GST_MAJORMINOR@_la_SOURCES)) gir_cincludes=$(patsubst %,--c-include='gst/tag/%',$(libgsttaginclude_HEADERS)) GstTag-@GST_MAJORMINOR@.gir: $(INTROSPECTION_SCANNER) libgsttag-@GST_MAJORMINOR@.la $(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \ GST_PLUGIN_SYSTEM_PATH="" GST_PLUGIN_PATH="" GST_REGISTRY_UPDATE=no \ $(INTROSPECTION_SCANNER) -v --namespace GstTag \ --nsversion=@GST_MAJORMINOR@ \ --strip-prefix=Gst \ $(gir_cincludes) \ --add-include-path=`$(PKG_CONFIG) --variable=girdir gstreamer-@GST_MAJORMINOR@` \ --add-include-path=`$(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_MAJORMINOR@` \ --library=libgsttag-@GST_MAJORMINOR@.la \ --include=Gst-@GST_MAJORMINOR@ \ --include=GstBase-@GST_MAJORMINOR@ \ --libtool="$(top_builddir)/libtool" \ --pkg gstreamer-@GST_MAJORMINOR@ \ --pkg gstreamer-base-@GST_MAJORMINOR@ \ --pkg-export gstreamer-tag-@GST_MAJORMINOR@ \ --add-init-section="gst_init(NULL,NULL);" \ --output $@ \ $(gir_headers) \ $(gir_sources) # INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to # install anything - we need to install inside our prefix. girdir = $(datadir)/gir-1.0 gir_DATA = $(BUILT_GIRSOURCES) typelibsdir = $(libdir)/girepository-1.0/ typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) %.typelib: %.gir $(INTROSPECTION_COMPILER) $(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \ $(INTROSPECTION_COMPILER) \ --includedir=$(srcdir) \ --includedir=$(builddir) \ --includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-@GST_MAJORMINOR@` \ --includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_MAJORMINOR@` \ $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) CLEANFILES = $(BUILT_GIRSOURCES) $(typelibs_DATA) endif # little program that reads iso_639.xml and outputs tables for us as fallback # for when iso-codes are not available (and so we don't have to read the xml # just to map codes) mklangtables_SOURCES = mklangtables.c mklangtables_CFLAGS = $(GST_CFLAGS) mklangtables_LDADD = $(GST_LIBS) mklicensestables_SOURCES = mklicensestables.c mklicensestables_CFLAGS = $(GST_CFLAGS) mklicensestables_LDADD = $(GST_LIBS) EXTRA_PROGRAMS = mklangtables mklicensestables update-isocodes: mklangtables $(builddir)/mklangtables > $(srcdir)/lang-tables.dat && \ echo "Updated lang-tables.dat" update-licenses: mklicensestables $(builddir)/mklicensestables \ --translation-dictionary=$(srcdir)/license-translations.dict \ > $(srcdir)/licenses-tables.dat && \ echo "Updated licenses-tables.dat and license-translations.dict" #if USE_NLS # Yes, this is not great, but it's only an implementation detail. The # translations come from an external source here, so we don't want the # strings retranslated, but also we don't want to create 30 1kB .mo files, # so just do something for now, we can change it later if someone really cares. licensetransdir = $(pkgdatadir) licensetrans_DATA = $(srcdir)/license-translations.dict #endif Android.mk: Makefile.am androgenizer -:PROJECT libgsttag -:SHARED libgsttag-@GST_MAJORMINOR@ \ -:TAGS eng debug \ -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \ -:SOURCES $(libgsttag_@GST_MAJORMINOR@_la_SOURCES) \ -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgsttag_@GST_MAJORMINOR@_la_CFLAGS) \ -:LDFLAGS $(libgsttag_@GST_MAJORMINOR@_la_LDFLAGS) \ $(libgsttag_@GST_MAJORMINOR@_la_LIBADD) \ -ldl \ -:HEADER_TARGET gstreamer-@GST_MAJORMINOR@/gst/tag \ -:HEADERS $(libgsttaginclude_HEADERS) \ -:PASSTHROUGH LOCAL_ARM_MODE:=arm \ > $@