Blame po/Makefile.in

Packit Service af52df
# Makefile.in generated by automake 1.13.4 from Makefile.am.
Packit Service af52df
# @configure_input@
Packit Service af52df
Packit Service af52df
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
Packit Service af52df
Packit Service af52df
# This Makefile.in is free software; the Free Software Foundation
Packit Service af52df
# gives unlimited permission to copy and/or distribute it,
Packit Service af52df
# with or without modifications, as long as this notice is preserved.
Packit Service af52df
Packit Service af52df
# This program is distributed in the hope that it will be useful,
Packit Service af52df
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
Packit Service af52df
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
Packit Service af52df
# PARTICULAR PURPOSE.
Packit Service af52df
Packit Service af52df
@SET_MAKE@
Packit Service af52df
Packit Service af52df
# po/Makefile.am for anaconda
Packit Service af52df
#
Packit Service af52df
# Based loosely on Makefiles generated by gettext
Packit Service af52df
#
Packit Service af52df
# Copyright (C) 2016 Red Hat, Inc.
Packit Service af52df
#
Packit Service af52df
# This program is free software; you can redistribute it and/or modify
Packit Service af52df
# it under the terms of the GNU Lesser General Public License as published
Packit Service af52df
# by the Free Software Foundation; either version 2.1 of the License, or
Packit Service af52df
# (at your option) any later version.
Packit Service af52df
#
Packit Service af52df
# This program is distributed in the hope that it will be useful,
Packit Service af52df
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service af52df
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service af52df
# GNU Lesser General Public License for more details.
Packit Service af52df
#
Packit Service af52df
# You should have received a copy of the GNU Lesser General Public License
Packit Service af52df
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit Service af52df
#
Packit Service af52df
# Author: David Shea <dshea@redhat.com>
Packit Service af52df
Packit Service af52df
# This file is intended to replace everything that gettextize or autopoint
Packit Service af52df
# installs. It has a lot less weird crud and tries to cooperate with
Packit Service af52df
# automake at least a little bit.
Packit Service af52df
#
Packit Service af52df
# To use it:
Packit Service af52df
# - Edit COPYRIGHT_HOLDER and MSGID_BUGS_ADDRESS below
Packit Service af52df
#
Packit Service af52df
# - Add the file types you're interested in to POTFILE_SUFFIXES. This replaces
Packit Service af52df
#   the old POTFILES.in since the list of files you want to select for
Packit Service af52df
#   translation is invariably all of them.
Packit Service af52df
#
Packit Service af52df
# - Add po/Makefile to AC_CONFIG_FILES (there may be po/Makefile.in if
Packit Service af52df
#   switching from gettextize, replace that)
Packit Service af52df
#
Packit Service af52df
# - Get rid of AM_GNU_GETTEXT and AM_GNU_GETTEXT_VERSION. You might want to
Packit Service af52df
#   add checks for xgettext, msgmerge, msgfmt, and msgcat. Up to you.
Packit Service af52df
#
Packit Service af52df
# - Add the following to .gitignore:
Packit Service af52df
#     po/*.mo
Packit Service af52df
#     po/*.po
Packit Service af52df
#     po/*.mpo
Packit Service af52df
#     po/*.pot
Packit Service af52df
#
Packit Service af52df
# - Remove everything in the po/ directory from source control except this
Packit Service af52df
#   file.
Packit Service af52df
#
Packit Service af52df
# The idea is something like this:
Packit Service af52df
#   From a clean project, you do the automake stuff and download a bunch of
Packit Service af52df
#   .po files from the external translation site. These are the "source" files.
Packit Service af52df
#
Packit Service af52df
#   From the source tree we create a template file, <package>.pot, of all the
Packit Service af52df
#   translatable strings. This file is not saved or distributed because there's
Packit Service af52df
#   really no reason to do that if translations are not part of the source
Packit Service af52df
#   tree. The file is pushed to the translators when creating a new release,
Packit Service af52df
#   and it is used during the build, and that's it.
Packit Service af52df
#
Packit Service af52df
#   The .po files might not match the .pot file, because this is the nature of
Packit Service af52df
#   linear time and translations being a separate task. Maybe the translator
Packit Service af52df
#   last touched the .po file yesterday. Maybe three years ago. To get the
Packit Service af52df
#   translations in sync with the source, which usually means untranslating
Packit Service af52df
#   some strings, we run msgmerge on all of the source files. The merged files
Packit Service af52df
#   are saved in builddir as <lang>.mpo, which is a non-standard file extension
Packit Service af52df
#   I just made up.
Packit Service af52df
#
Packit Service af52df
#   The merged .po files are then compiled into .mo files, which are what
Packit Service af52df
#   get installed to /usr/share/locale.
Packit Service af52df
Packit Service af52df
VPATH = @srcdir@
Packit Service af52df
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
Packit Service af52df
am__make_running_with_option = \
Packit Service af52df
  case $${target_option-} in \
Packit Service af52df
      ?) ;; \
Packit Service af52df
      *) echo "am__make_running_with_option: internal error: invalid" \
Packit Service af52df
              "target option '$${target_option-}' specified" >&2; \
Packit Service af52df
         exit 1;; \
Packit Service af52df
  esac; \
Packit Service af52df
  has_opt=no; \
Packit Service af52df
  sane_makeflags=$$MAKEFLAGS; \
Packit Service af52df
  if $(am__is_gnu_make); then \
Packit Service af52df
    sane_makeflags=$$MFLAGS; \
Packit Service af52df
  else \
Packit Service af52df
    case $$MAKEFLAGS in \
Packit Service af52df
      *\\[\ \	]*) \
Packit Service af52df
        bs=\\; \
Packit Service af52df
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
Packit Service af52df
          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
Packit Service af52df
    esac; \
Packit Service af52df
  fi; \
Packit Service af52df
  skip_next=no; \
Packit Service af52df
  strip_trailopt () \
Packit Service af52df
  { \
Packit Service af52df
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
Packit Service af52df
  }; \
Packit Service af52df
  for flg in $$sane_makeflags; do \
Packit Service af52df
    test $$skip_next = yes && { skip_next=no; continue; }; \
Packit Service af52df
    case $$flg in \
Packit Service af52df
      *=*|--*) continue;; \
Packit Service af52df
        -*I) strip_trailopt 'I'; skip_next=yes;; \
Packit Service af52df
      -*I?*) strip_trailopt 'I';; \
Packit Service af52df
        -*O) strip_trailopt 'O'; skip_next=yes;; \
Packit Service af52df
      -*O?*) strip_trailopt 'O';; \
Packit Service af52df
        -*l) strip_trailopt 'l'; skip_next=yes;; \
Packit Service af52df
      -*l?*) strip_trailopt 'l';; \
Packit Service af52df
      -[dEDm]) skip_next=yes;; \
Packit Service af52df
      -[JT]) skip_next=yes;; \
Packit Service af52df
    esac; \
Packit Service af52df
    case $$flg in \
Packit Service af52df
      *$$target_option*) has_opt=yes; break;; \
Packit Service af52df
    esac; \
Packit Service af52df
  done; \
Packit Service af52df
  test $$has_opt = yes
Packit Service af52df
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
Packit Service af52df
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
Packit Service af52df
pkgdatadir = $(datadir)/@PACKAGE@
Packit Service af52df
pkgincludedir = $(includedir)/@PACKAGE@
Packit Service af52df
pkglibdir = $(libdir)/@PACKAGE@
Packit Service af52df
pkglibexecdir = $(libexecdir)/@PACKAGE@
Packit Service af52df
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
Packit Service af52df
install_sh_DATA = $(install_sh) -c -m 644
Packit Service af52df
install_sh_PROGRAM = $(install_sh) -c
Packit Service af52df
install_sh_SCRIPT = $(install_sh) -c
Packit Service af52df
INSTALL_HEADER = $(INSTALL_DATA)
Packit Service af52df
transform = $(program_transform_name)
Packit Service af52df
NORMAL_INSTALL = :
Packit Service af52df
PRE_INSTALL = :
Packit Service af52df
POST_INSTALL = :
Packit Service af52df
NORMAL_UNINSTALL = :
Packit Service af52df
PRE_UNINSTALL = :
Packit Service af52df
POST_UNINSTALL = :
Packit Service af52df
build_triplet = @build@
Packit Service af52df
host_triplet = @host@
Packit Service af52df
subdir = po
Packit Service af52df
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
Packit Service af52df
	$(dist_noinst_DATA)
Packit Service af52df
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
Packit Service af52df
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
Packit Service af52df
	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
Packit Service af52df
	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
Packit Service af52df
	$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/acinclude.m4 \
Packit Service af52df
	$(top_srcdir)/configure.ac
Packit Service af52df
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
Packit Service af52df
	$(ACLOCAL_M4)
Packit Service af52df
mkinstalldirs = $(install_sh) -d
Packit Service af52df
CONFIG_CLEAN_FILES =
Packit Service af52df
CONFIG_CLEAN_VPATH_FILES =
Packit Service af52df
AM_V_P = $(am__v_P_@AM_V@)
Packit Service af52df
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
Packit Service af52df
am__v_P_0 = false
Packit Service af52df
am__v_P_1 = :
Packit Service af52df
AM_V_GEN = $(am__v_GEN_@AM_V@)
Packit Service af52df
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
Packit Service af52df
am__v_GEN_0 = @echo "  GEN     " $@;
Packit Service af52df
am__v_GEN_1 = 
Packit Service af52df
AM_V_at = $(am__v_at_@AM_V@)
Packit Service af52df
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
Packit Service af52df
am__v_at_0 = @
Packit Service af52df
am__v_at_1 = 
Packit Service af52df
SOURCES =
Packit Service af52df
DIST_SOURCES =
Packit Service af52df
am__can_run_installinfo = \
Packit Service af52df
  case $$AM_UPDATE_INFO_DIR in \
Packit Service af52df
    n|no|NO) false;; \
Packit Service af52df
    *) (install-info --version) >/dev/null 2>&1;; \
Packit Service af52df
  esac
Packit Service af52df
DATA = $(dist_noinst_DATA) $(nodist_noinst_DATA)
Packit Service af52df
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
Packit Service af52df
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
Packit Service af52df
ACLOCAL = @ACLOCAL@
Packit Service af52df
AMTAR = @AMTAR@
Packit Service af52df
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
Packit Service af52df
AR = @AR@
Packit Service af52df
AUTOCONF = @AUTOCONF@
Packit Service af52df
AUTOHEADER = @AUTOHEADER@
Packit Service af52df
AUTOMAKE = @AUTOMAKE@
Packit Service af52df
AWK = @AWK@
Packit Service af52df
CC = @CC@
Packit Service af52df
CCDEPMODE = @CCDEPMODE@
Packit Service af52df
CFLAGS = @CFLAGS@
Packit Service af52df
CPP = @CPP@
Packit Service af52df
CPPFLAGS = @CPPFLAGS@
Packit Service af52df
CYGPATH_W = @CYGPATH_W@
Packit Service af52df
DEFS = @DEFS@
Packit Service af52df
DEPDIR = @DEPDIR@
Packit Service af52df
DLLTOOL = @DLLTOOL@
Packit Service af52df
DSYMUTIL = @DSYMUTIL@
Packit Service af52df
DUMPBIN = @DUMPBIN@
Packit Service af52df
ECHO_C = @ECHO_C@
Packit Service af52df
ECHO_N = @ECHO_N@
Packit Service af52df
ECHO_T = @ECHO_T@
Packit Service af52df
EGREP = @EGREP@
Packit Service af52df
EXEEXT = @EXEEXT@
Packit Service af52df
FGREP = @FGREP@
Packit Service af52df
GREP = @GREP@
Packit Service af52df
INSTALL = @INSTALL@
Packit Service af52df
INSTALL_DATA = @INSTALL_DATA@
Packit Service af52df
INSTALL_PROGRAM = @INSTALL_PROGRAM@
Packit Service af52df
INSTALL_SCRIPT = @INSTALL_SCRIPT@
Packit Service af52df
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
Packit Service af52df
LD = @LD@
Packit Service af52df
LDFLAGS = @LDFLAGS@
Packit Service af52df
LIBOBJS = @LIBOBJS@
Packit Service af52df
LIBS = @LIBS@
Packit Service af52df
LIBTOOL = @LIBTOOL@
Packit Service af52df
LIPO = @LIPO@
Packit Service af52df
LN_S = @LN_S@
Packit Service af52df
LTLIBOBJS = @LTLIBOBJS@
Packit Service af52df
MAKEINFO = @MAKEINFO@
Packit Service af52df
MANIFEST_TOOL = @MANIFEST_TOOL@
Packit Service af52df
MKDIR_P = @MKDIR_P@
Packit Service af52df
Packit Service af52df
# msgcat cats multiple .po (or .pot) files together. We use this to generate
Packit Service af52df
# the .pot file from multiple parts.
Packit Service af52df
MSGCAT = msgcat
Packit Service af52df
Packit Service af52df
# msgfmt compiles a .po file into a .mo file
Packit Service af52df
# Do not include --check in the options, since those checks are more
Packit Service af52df
# conveniently done by translation-canary
Packit Service af52df
MSGFMT = msgfmt
Packit Service af52df
Packit Service af52df
# msgmerge merges changes in the template (.pot) file back into the translation
Packit Service af52df
# (.po) file
Packit Service af52df
MSGMERGE = msgmerge
Packit Service af52df
NM = @NM@
Packit Service af52df
NMEDIT = @NMEDIT@
Packit Service af52df
OBJDUMP = @OBJDUMP@
Packit Service af52df
OBJEXT = @OBJEXT@
Packit Service af52df
OTOOL = @OTOOL@
Packit Service af52df
OTOOL64 = @OTOOL64@
Packit Service af52df
PACKAGE = @PACKAGE@
Packit Service af52df
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
Packit Service af52df
PACKAGE_NAME = @PACKAGE_NAME@
Packit Service af52df
PACKAGE_STRING = @PACKAGE_STRING@
Packit Service af52df
PACKAGE_TARNAME = @PACKAGE_TARNAME@
Packit Service af52df
PACKAGE_URL = @PACKAGE_URL@
Packit Service af52df
PACKAGE_VERSION = @PACKAGE_VERSION@
Packit Service af52df
PATH_SEPARATOR = @PATH_SEPARATOR@
Packit Service af52df
PCRE_CFLAGS = @PCRE_CFLAGS@
Packit Service af52df
PCRE_LIBS = @PCRE_LIBS@
Packit Service af52df
PKG_CONFIG = @PKG_CONFIG@
Packit Service af52df
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
Packit Service af52df
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
Packit Service af52df
PYTHON = @PYTHON@
Packit Service af52df
PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
Packit Service af52df
PYTHON_PLATFORM = @PYTHON_PLATFORM@
Packit Service af52df
PYTHON_PREFIX = @PYTHON_PREFIX@
Packit Service af52df
PYTHON_VERSION = @PYTHON_VERSION@
Packit Service af52df
RANLIB = @RANLIB@
Packit Service af52df
SED = @SED@
Packit Service af52df
SET_MAKE = @SET_MAKE@
Packit Service af52df
SHELL = @SHELL@
Packit Service af52df
STRIP = @STRIP@
Packit Service af52df
VERSION = @VERSION@
Packit Service af52df
WITH_GTK_DOC = @WITH_GTK_DOC@
Packit Service af52df
WITH_PYTHON2 = @WITH_PYTHON2@
Packit Service af52df
WITH_PYTHON3 = @WITH_PYTHON3@
Packit Service af52df
Packit Service af52df
# The gettext programs and arguments
Packit Service af52df
# xgettext eXtracts strings from translatable files and generates the template
Packit Service af52df
# (.pot) file. We use a wrapper from translation-canary in order to catch
Packit Service af52df
# warnings about strings that may not be translatable, and all the keyword
Packit Service af52df
# arguments define the various functions that are used to mark a string as
Packit Service af52df
# translatable
Packit Service af52df
XGETTEXT = $(top_srcdir)/translation-canary/xgettext_werror.sh
Packit Service af52df
abs_builddir = @abs_builddir@
Packit Service af52df
abs_srcdir = @abs_srcdir@
Packit Service af52df
abs_top_builddir = @abs_top_builddir@
Packit Service af52df
abs_top_srcdir = @abs_top_srcdir@
Packit Service af52df
ac_ct_AR = @ac_ct_AR@
Packit Service af52df
ac_ct_CC = @ac_ct_CC@
Packit Service af52df
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
Packit Service af52df
am__include = @am__include@
Packit Service af52df
am__leading_dot = @am__leading_dot@
Packit Service af52df
am__quote = @am__quote@
Packit Service af52df
am__tar = @am__tar@
Packit Service af52df
am__untar = @am__untar@
Packit Service af52df
bindir = @bindir@
Packit Service af52df
build = @build@
Packit Service af52df
build_alias = @build_alias@
Packit Service af52df
build_cpu = @build_cpu@
Packit Service af52df
build_os = @build_os@
Packit Service af52df
build_vendor = @build_vendor@
Packit Service af52df
builddir = @builddir@
Packit Service af52df
datadir = @datadir@
Packit Service af52df
datarootdir = @datarootdir@
Packit Service af52df
docdir = @docdir@
Packit Service af52df
dvidir = @dvidir@
Packit Service af52df
exec_prefix = @exec_prefix@
Packit Service af52df
gtkdoc_scan = @gtkdoc_scan@
Packit Service af52df
host = @host@
Packit Service af52df
host_alias = @host_alias@
Packit Service af52df
host_cpu = @host_cpu@
Packit Service af52df
host_os = @host_os@
Packit Service af52df
host_vendor = @host_vendor@
Packit Service af52df
htmldir = @htmldir@
Packit Service af52df
includedir = @includedir@
Packit Service af52df
infodir = @infodir@
Packit Service af52df
install_sh = @install_sh@
Packit Service af52df
libdir = @libdir@
Packit Service af52df
libexecdir = @libexecdir@
Packit Service af52df
Packit Service af52df
# Install the .mo files.
Packit Service af52df
# .mo files get installed as $datadir/locale/<lang>/LC_MESSAGES/<package>.po
Packit Service af52df
# which doesn't really fit well with the way make or automake do things but
Packit Service af52df
# that is the world we live in
Packit Service af52df
localedir = $(datadir)/locale
Packit Service af52df
localstatedir = @localstatedir@
Packit Service af52df
mandir = @mandir@
Packit Service af52df
mkdir_p = @mkdir_p@
Packit Service af52df
oldincludedir = @oldincludedir@
Packit Service af52df
pdfdir = @pdfdir@
Packit Service af52df
pkgpyexecdir = @pkgpyexecdir@
Packit Service af52df
pkgpythondir = @pkgpythondir@
Packit Service af52df
prefix = @prefix@
Packit Service af52df
program_transform_name = @program_transform_name@
Packit Service af52df
psdir = @psdir@
Packit Service af52df
pyexecdir = @pyexecdir@
Packit Service af52df
python2 = @python2@
Packit Service af52df
python3 = @python3@
Packit Service af52df
pythondir = @pythondir@
Packit Service af52df
sbindir = @sbindir@
Packit Service af52df
sharedstatedir = @sharedstatedir@
Packit Service af52df
srcdir = @srcdir@
Packit Service af52df
sysconfdir = @sysconfdir@
Packit Service af52df
target_alias = @target_alias@
Packit Service af52df
top_build_prefix = @top_build_prefix@
Packit Service af52df
top_builddir = @top_builddir@
Packit Service af52df
top_srcdir = @top_srcdir@
Packit Service af52df
Packit Service af52df
# Variables used in xgettext arguments
Packit Service af52df
COPYRIGHT_HOLDER = Red Hat, Inc.
Packit Service af52df
MSGID_BUGS_ADDRESS = anaconda-devel-list@redhat.com
Packit Service af52df
Packit Service af52df
# What kind of files are we looking for?
Packit Service af52df
POTFILE_SUFFIXES = c
Packit Service af52df
Packit Service af52df
# Below this line is the part that shouldn't need to be changed for other
Packit Service af52df
# projects
Packit Service af52df
Packit Service af52df
# Turn POTFILE_SUFFIXES into a list of files
Packit Service af52df
POTFILE_INPUT = $(foreach s,$(POTFILE_SUFFIXES),\
Packit Service af52df
		$(shell find $(top_srcdir)/ -type d -name .git -prune -o -type f -name '*.$(s)' -print))
Packit Service af52df
Packit Service af52df
Packit Service af52df
# The template file, generated by from all files with translatable strings.
Packit Service af52df
POTFILE = $(PACKAGE).pot
Packit Service af52df
Packit Service af52df
# The translation files, provided by translators, pulled down from Zanata.
Packit Service af52df
# Use whatever we got from Zanata, or nothing at all if no translations were
Packit Service af52df
# pulled.
Packit Service af52df
POFILES = $(wildcard $(srcdir)/*.po)
Packit Service af52df
Packit Service af52df
# The translations files after they have been merged with the latest copy of
Packit Service af52df
# the .pot file. These are written to $(builddir) as <lang>.mpo.
Packit Service af52df
Packit Service af52df
# Special weirdness to auto-generate sr@latin.po if sr.po is present
Packit Service af52df
MERGED_POFILES = $(patsubst %.po,%.mpo,$(notdir $(POFILES))) $(if \
Packit Service af52df
	$(shell [ -f sr.po ] && echo y),sr@latin.mpo,)
Packit Service af52df
Packit Service af52df
# The MO files, which are the binary data built from the .po files.
Packit Service af52df
MOFILES = $(patsubst %.mpo,%.mo,$(MERGED_POFILES))
Packit Service af52df
XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --keyword=P_:1,2 \
Packit Service af52df
	           --keyword=C_:1c,2 --keyword=CN_:1c,2 --keyword=CP_:1c,2,3 \
Packit Service af52df
		   --add-comments=TRANSLATORS: \
Packit Service af52df
		   --from-code=UTF-8 --package-name=$(PACKAGE) \
Packit Service af52df
		   --package-version=$(PACKAGE_VERSION) \
Packit Service af52df
		   --copyright-holder="$(COPYRIGHT_HOLDER)" \
Packit Service af52df
		   --msgid-bugs-address="$(MSGID_BUGS_ADDRESS)"
Packit Service af52df
Packit Service af52df
MSGFMT_OPTIONS = 
Packit Service af52df
MSGMERGE_OPTIONS = 
Packit Service af52df
Packit Service af52df
# msgfilter applies a filter to a .po file. We use this to automatically
Packit Service af52df
# transliterate Serbian from Cyrillic (sr) to Latin (sr@latin).
Packit Service af52df
MSGFILTER = msgfilter
Packit Service af52df
Packit Service af52df
# Automake magic for verbose/non-verbose build output
Packit Service af52df
GETTEXT_V_EXTRACT = $(GETTEXT_V_EXTRACT_$(V))
Packit Service af52df
GETTEXT_V_EXTRACT_ = $(GETTEXT_V_EXTRACT_$(AM_DEFAULT_VERBOSITY))
Packit Service af52df
GETTEXT_V_EXTRACT_0 = @echo "  EXTRACT " $@;
Packit Service af52df
GETTEXT_V_FORMAT = $(GETTEXT_V_FORMAT_$(V))
Packit Service af52df
GETTEXT_V_FORMAT_ = $(GETTEXT_V_FORMAT_$(AM_DEFAULT_VERBOSITY))
Packit Service af52df
GETTEXT_V_FORMAT_0 = @echo "  FORMAT  " $@;
Packit Service af52df
GETTEXT_V_MERGE = $(GETTEXT_V_MERGE_$(V))
Packit Service af52df
GETTEXT_V_MERGE_ = $(GETTEXT_V_MERGE_$(AM_DEFAULT_VERBOSITY))
Packit Service af52df
GETTEXT_V_MERGE_0 = @echo "  MERGE   " $@;
Packit Service af52df
Packit Service af52df
# If make was run with V=1, add verbose options to msgfmt
Packit Service af52df
MSGFMT_V_OPTIONS = $(MSGFMT_V_OPTIONS_$(V))
Packit Service af52df
MSGFMT_V_OPTIONS_ = $(MSGFMT_V_OPTIONS_$(AM_DEFAULT_VERBOSITY))
Packit Service af52df
MSGFMT_V_OPTIONS_0 = $(MSGFMT_OPTIONS)
Packit Service af52df
MSGFMT_V_OPTIONS_1 = $(MSGFMT_OPTIONS) --statistics --verbose
Packit Service af52df
Packit Service af52df
# Same with msgmerge
Packit Service af52df
MSGMERGE_V_OPTIONS = $(MSGMERGE_V_OPTIONS_$(V))
Packit Service af52df
MSGMERGE_V_OPTIONS_ = $(MSGMERGE_V_OPTIONS_$(AM_DEFAULT_VERBOSITY))
Packit Service af52df
MSGMERGE_V_OPTIONS_0 = $(MSGMERGE_OPTIONS) --quiet
Packit Service af52df
MSGMERGE_V_OPTIONS_1 = $(MSGMERGE_OPTIONS) --verbose
Packit Service af52df
Packit Service af52df
# Actually do stuff:
Packit Service af52df
# .po files get distributed but not installed
Packit Service af52df
dist_noinst_DATA = $(POFILES)
Packit Service af52df
Packit Service af52df
# Build the .mo files but don't actually do anything with them. The real
Packit Service af52df
# install part is in the install-data-local target below. Build the .pot file
Packit Service af52df
# as well, even if there are no .mo files to build, so it can be tested.
Packit Service af52df
nodist_noinst_DATA = $(MOFILES) $(POTFILE)
Packit Service af52df
CLEANFILES = $(MERGED_POFILES) $(MOFILES) $(POTFILE)
Packit Service af52df
all: all-am
Packit Service af52df
Packit Service af52df
.SUFFIXES:
Packit Service af52df
.SUFFIXES: .mo .mpo .po
Packit Service af52df
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
Packit Service af52df
	@for dep in $?; do \
Packit Service af52df
	  case '$(am__configure_deps)' in \
Packit Service af52df
	    *$$dep*) \
Packit Service af52df
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
Packit Service af52df
	        && { if test -f $@; then exit 0; else break; fi; }; \
Packit Service af52df
	      exit 1;; \
Packit Service af52df
	  esac; \
Packit Service af52df
	done; \
Packit Service af52df
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign po/Makefile'; \
Packit Service af52df
	$(am__cd) $(top_srcdir) && \
Packit Service af52df
	  $(AUTOMAKE) --foreign po/Makefile
Packit Service af52df
.PRECIOUS: Makefile
Packit Service af52df
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Packit Service af52df
	@case '$?' in \
Packit Service af52df
	  *config.status*) \
Packit Service af52df
	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
Packit Service af52df
	  *) \
Packit Service af52df
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
Packit Service af52df
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
Packit Service af52df
	esac;
Packit Service af52df
Packit Service af52df
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
Packit Service af52df
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
Packit Service af52df
Packit Service af52df
$(top_srcdir)/configure:  $(am__configure_deps)
Packit Service af52df
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
Packit Service af52df
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
Packit Service af52df
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
Packit Service af52df
$(am__aclocal_m4_deps):
Packit Service af52df
Packit Service af52df
mostlyclean-libtool:
Packit Service af52df
	-rm -f *.lo
Packit Service af52df
Packit Service af52df
clean-libtool:
Packit Service af52df
	-rm -rf .libs _libs
Packit Service af52df
tags TAGS:
Packit Service af52df
Packit Service af52df
ctags CTAGS:
Packit Service af52df
Packit Service af52df
cscope cscopelist:
Packit Service af52df
Packit Service af52df
Packit Service af52df
distdir: $(DISTFILES)
Packit Service af52df
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
Packit Service af52df
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
Packit Service af52df
	list='$(DISTFILES)'; \
Packit Service af52df
	  dist_files=`for file in $$list; do echo $$file; done | \
Packit Service af52df
	  sed -e "s|^$$srcdirstrip/||;t" \
Packit Service af52df
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
Packit Service af52df
	case $$dist_files in \
Packit Service af52df
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
Packit Service af52df
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
Packit Service af52df
			   sort -u` ;; \
Packit Service af52df
	esac; \
Packit Service af52df
	for file in $$dist_files; do \
Packit Service af52df
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
Packit Service af52df
	  if test -d $$d/$$file; then \
Packit Service af52df
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
Packit Service af52df
	    if test -d "$(distdir)/$$file"; then \
Packit Service af52df
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
Packit Service af52df
	    fi; \
Packit Service af52df
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
Packit Service af52df
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
Packit Service af52df
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
Packit Service af52df
	    fi; \
Packit Service af52df
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
Packit Service af52df
	  else \
Packit Service af52df
	    test -f "$(distdir)/$$file" \
Packit Service af52df
	    || cp -p $$d/$$file "$(distdir)/$$file" \
Packit Service af52df
	    || exit 1; \
Packit Service af52df
	  fi; \
Packit Service af52df
	done
Packit Service af52df
check-am: all-am
Packit Service af52df
check: check-am
Packit Service af52df
all-am: Makefile $(DATA)
Packit Service af52df
installdirs:
Packit Service af52df
install: install-am
Packit Service af52df
install-exec: install-exec-am
Packit Service af52df
install-data: install-data-am
Packit Service af52df
uninstall: uninstall-am
Packit Service af52df
Packit Service af52df
install-am: all-am
Packit Service af52df
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
Packit Service af52df
Packit Service af52df
installcheck: installcheck-am
Packit Service af52df
install-strip:
Packit Service af52df
	if test -z '$(STRIP)'; then \
Packit Service af52df
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
Packit Service af52df
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
Packit Service af52df
	      install; \
Packit Service af52df
	else \
Packit Service af52df
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
Packit Service af52df
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
Packit Service af52df
	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
Packit Service af52df
	fi
Packit Service af52df
mostlyclean-generic:
Packit Service af52df
Packit Service af52df
clean-generic:
Packit Service af52df
	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
Packit Service af52df
Packit Service af52df
distclean-generic:
Packit Service af52df
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
Packit Service af52df
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
Packit Service af52df
Packit Service af52df
maintainer-clean-generic:
Packit Service af52df
	@echo "This command is intended for maintainers to use"
Packit Service af52df
	@echo "it deletes files that may require special tools to rebuild."
Packit Service af52df
clean: clean-am
Packit Service af52df
Packit Service af52df
clean-am: clean-generic clean-libtool mostlyclean-am
Packit Service af52df
Packit Service af52df
distclean: distclean-am
Packit Service af52df
	-rm -f Makefile
Packit Service af52df
distclean-am: clean-am distclean-generic
Packit Service af52df
Packit Service af52df
dvi: dvi-am
Packit Service af52df
Packit Service af52df
dvi-am:
Packit Service af52df
Packit Service af52df
html: html-am
Packit Service af52df
Packit Service af52df
html-am:
Packit Service af52df
Packit Service af52df
info: info-am
Packit Service af52df
Packit Service af52df
info-am:
Packit Service af52df
Packit Service af52df
install-data-am: install-data-local
Packit Service af52df
Packit Service af52df
install-dvi: install-dvi-am
Packit Service af52df
Packit Service af52df
install-dvi-am:
Packit Service af52df
Packit Service af52df
install-exec-am:
Packit Service af52df
Packit Service af52df
install-html: install-html-am
Packit Service af52df
Packit Service af52df
install-html-am:
Packit Service af52df
Packit Service af52df
install-info: install-info-am
Packit Service af52df
Packit Service af52df
install-info-am:
Packit Service af52df
Packit Service af52df
install-man:
Packit Service af52df
Packit Service af52df
install-pdf: install-pdf-am
Packit Service af52df
Packit Service af52df
install-pdf-am:
Packit Service af52df
Packit Service af52df
install-ps: install-ps-am
Packit Service af52df
Packit Service af52df
install-ps-am:
Packit Service af52df
Packit Service af52df
installcheck-am:
Packit Service af52df
Packit Service af52df
maintainer-clean: maintainer-clean-am
Packit Service af52df
	-rm -f Makefile
Packit Service af52df
maintainer-clean-am: distclean-am maintainer-clean-generic
Packit Service af52df
Packit Service af52df
mostlyclean: mostlyclean-am
Packit Service af52df
Packit Service af52df
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
Packit Service af52df
Packit Service af52df
pdf: pdf-am
Packit Service af52df
Packit Service af52df
pdf-am:
Packit Service af52df
Packit Service af52df
ps: ps-am
Packit Service af52df
Packit Service af52df
ps-am:
Packit Service af52df
Packit Service af52df
uninstall-am: uninstall-local
Packit Service af52df
Packit Service af52df
.MAKE: install-am install-strip
Packit Service af52df
Packit Service af52df
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
Packit Service af52df
	cscopelist-am ctags-am distclean distclean-generic \
Packit Service af52df
	distclean-libtool distdir dvi dvi-am html html-am info info-am \
Packit Service af52df
	install install-am install-data install-data-am \
Packit Service af52df
	install-data-local install-dvi install-dvi-am install-exec \
Packit Service af52df
	install-exec-am install-html install-html-am install-info \
Packit Service af52df
	install-info-am install-man install-pdf install-pdf-am \
Packit Service af52df
	install-ps install-ps-am install-strip installcheck \
Packit Service af52df
	installcheck-am installdirs maintainer-clean \
Packit Service af52df
	maintainer-clean-generic mostlyclean mostlyclean-generic \
Packit Service af52df
	mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
Packit Service af52df
	uninstall-am uninstall-local
Packit Service af52df
Packit Service af52df
sr@latin.mpo: $(srcdir)/sr.po
Packit Service af52df
	$(AM_V_GEN)$(MSGFILTER) -i $(srcdir)/sr.po -o $@ recode-sr-latin
Packit Service af52df
Packit Service af52df
# How to build the .pot file. This needs to be regenerated if anything that
Packit Service af52df
# goes into it has changed.
Packit Service af52df
$(POTFILE): $(POTFILE_INPUT)
Packit Service af52df
	$(GETTEXT_V_EXTRACT)$(XGETTEXT) $(XGETTEXT_OPTIONS) --directory=$(top_srcdir) -o $@ \
Packit Service af52df
	    $(patsubst $(top_srcdir)/%,%,$(POTFILE_INPUT))
Packit Service af52df
Packit Service af52df
# Force a rebuild of the .pot file. Useful if something got removed, for
Packit Service af52df
# example.
Packit Service af52df
$(PACKAGE).pot-update:
Packit Service af52df
	@rm -f $(POTFILE)
Packit Service af52df
	@$(MAKE) $(POTFILE)
Packit Service af52df
Packit Service af52df
# How to build the merged .mpo files from the .po files
Packit Service af52df
$(MERGED_POFILES): $(POFILES) $(POTFILE)
Packit Service af52df
Packit Service af52df
.po.mpo:
Packit Service af52df
	$(GETTEXT_V_MERGE)$(MSGMERGE) $(MSGMERGE_V_OPTIONS) -o $@ $< $(POTFILE)
Packit Service af52df
Packit Service af52df
# How to build the .mo files from the .mpo files
Packit Service af52df
$(MOFILES): $(MERGED_POFILES)
Packit Service af52df
Packit Service af52df
.mpo.mo:
Packit Service af52df
	$(GETTEXT_V_FORMAT)$(MSGFMT) $(MSGFMT_V_OPTIONS) -o $@ $<
Packit Service af52df
install-data-local:
Packit Service af52df
	@for mo in $(MOFILES) ; do \
Packit Service af52df
		lang="$$(basename "$$mo" .mo)" ; \
Packit Service af52df
		$(MKDIR_P) $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES || exit $$? ; \
Packit Service af52df
		$(INSTALL_DATA) "$$mo" "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE).mo" || exit $$? ; \
Packit Service af52df
	done
Packit Service af52df
Packit Service af52df
uninstall-local:
Packit Service af52df
	@for mo in $(MOFILES) ; do \
Packit Service af52df
		lang="$$(basename "$$mo" .mo)" ; \
Packit Service af52df
		rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE).mo ; \
Packit Service af52df
	done
Packit Service af52df
Packit Service af52df
# Tell versions [3.59,3.63) of GNU make to not export all variables.
Packit Service af52df
# Otherwise a system limit (for SysV at least) may be exceeded.
Packit Service af52df
.NOEXPORT: