Blame po/Makefile.in

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