1# Makefile for PO directory in any package using GNU gettext. 2# Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper <drepper@gnu.ai.mit.edu> 3# 4# Copying and distribution of this file, with or without modification, 5# are permitted in any medium without royalty provided the copyright 6# notice and this notice are preserved. This file is offered as-is, 7# without any warranty. 8# 9# Origin: gettext-0.19.8 10GETTEXT_MACRO_VERSION = 0.19 11 12PACKAGE = @PACKAGE@ 13VERSION = @VERSION@ 14PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ 15 16SED = @SED@ 17SHELL = /bin/sh 18@SET_MAKE@ 19 20srcdir = @srcdir@ 21top_srcdir = @top_srcdir@ 22VPATH = @srcdir@ 23 24prefix = @prefix@ 25exec_prefix = @exec_prefix@ 26datarootdir = @datarootdir@ 27datadir = @datadir@ 28localedir = @localedir@ 29gettextsrcdir = $(datadir)/gettext/po 30 31INSTALL = @INSTALL@ 32INSTALL_DATA = @INSTALL_DATA@ 33 34# We use $(mkdir_p). 35# In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as 36# "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, 37# @install_sh@ does not start with $(SHELL), so we add it. 38# In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined 39# either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake 40# versions, $(mkinstalldirs) and $(install_sh) are unused. 41mkinstalldirs = $(SHELL) @install_sh@ -d 42install_sh = $(SHELL) @install_sh@ 43MKDIR_P = @MKDIR_P@ 44mkdir_p = @mkdir_p@ 45 46# When building gettext-tools, we prefer to use the built programs 47# rather than installed programs. However, we can't do that when we 48# are cross compiling. 49CROSS_COMPILING = @CROSS_COMPILING@ 50 51GMSGFMT_ = @GMSGFMT@ 52GMSGFMT_no = @GMSGFMT@ 53GMSGFMT_yes = @GMSGFMT_015@ 54GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) 55MSGFMT_ = @MSGFMT@ 56MSGFMT_no = @MSGFMT@ 57MSGFMT_yes = @MSGFMT_015@ 58MSGFMT = $(MSGFMT_$(USE_MSGCTXT)) 59XGETTEXT_ = @XGETTEXT@ 60XGETTEXT_no = @XGETTEXT@ 61XGETTEXT_yes = @XGETTEXT_015@ 62XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) 63MSGMERGE = msgmerge 64MSGMERGE_UPDATE = @MSGMERGE@ --update 65MSGINIT = msginit 66MSGCONV = msgconv 67MSGFILTER = msgfilter 68 69POFILES = @POFILES@ 70GMOFILES = @GMOFILES@ 71UPDATEPOFILES = @UPDATEPOFILES@ 72DUMMYPOFILES = @DUMMYPOFILES@ 73DISTFILES.common = Makefile.in.in remove-potcdate.sin \ 74$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) 75DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ 76$(POFILES) $(GMOFILES) \ 77$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) 78 79POTFILES = \ 80 81CATALOGS = @CATALOGS@ 82 83POFILESDEPS_ = $(srcdir)/$(DOMAIN).pot 84POFILESDEPS_yes = $(POFILESDEPS_) 85POFILESDEPS_no = 86POFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT)) 87 88DISTFILESDEPS_ = update-po 89DISTFILESDEPS_yes = $(DISTFILESDEPS_) 90DISTFILESDEPS_no = 91DISTFILESDEPS = $(DISTFILESDEPS_$(DIST_DEPENDS_ON_UPDATE_PO)) 92 93# Makevars gets inserted here. (Don't remove this line!) 94 95.SUFFIXES: 96.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update 97 98.po.mo: 99 $(E) "$(MSGFMT) -c -o $@ $<"; \ 100 $(Q) $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ 101 102.po.gmo: 103 @lang=`echo $* | sed -e 's,.*/,,'`; \ 104 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ 105 echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.po"; \ 106 cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo 107 108.sin.sed: 109 sed -e '/^#/d' $< > t-$@ 110 mv t-$@ $@ 111 112 113all: all-@USE_NLS@ 114 115all-yes: @MAINTAINER_CMT@stamp-po 116all-no: 117all-static: 118depend: 119coverage.txt: 120 121# Ensure that the gettext macros and this Makefile.in.in are in sync. 122CHECK_MACRO_VERSION = \ 123 test "$(GETTEXT_MACRO_VERSION)" = "@GETTEXT_MACRO_VERSION@" \ 124 || { echo "*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@" 1>&2; \ 125 exit 1; \ 126 } 127 128# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no 129# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because 130# we don't want to bother translators with empty POT files). We assume that 131# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. 132# In this case, stamp-po is a nop (i.e. a phony target). 133 134# stamp-po is a timestamp denoting the last time at which the CATALOGS have 135# been loosely updated. Its purpose is that when a developer or translator 136# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, 137# "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent 138# invocations of "make" will do nothing. This timestamp would not be necessary 139# if updating the $(CATALOGS) would always touch them; however, the rule for 140# $(POFILES) has been designed to not touch files that don't need to be 141# changed. 142stamp-po: $(srcdir)/$(DOMAIN).pot 143 @$(CHECK_MACRO_VERSION) 144 test ! -f $(srcdir)/$(DOMAIN).pot || \ 145 test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) 146 @test ! -f $(srcdir)/$(DOMAIN).pot || { \ 147 echo "touch stamp-po" && \ 148 echo timestamp > stamp-poT && \ 149 mv stamp-poT stamp-po; \ 150 } 151 152# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', 153# otherwise packages like GCC can not be built if only parts of the source 154# have been downloaded. 155 156# This target rebuilds $(DOMAIN).pot; it is an expensive operation. 157# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. 158# The determination of whether the package xyz is a GNU one is based on the 159# heuristic whether some file in the top level directory mentions "GNU xyz". 160# If GNU 'find' is available, we avoid grepping through monster files. 161$(DOMAIN).pot-update: $(srcdir)/POTFILES.in remove-potcdate.sed \ 162 $(srcdir)/at-expand.pl 163 package_gnu="$(PACKAGE_GNU)"; \ 164 test -n "$$package_gnu" || { \ 165 if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ 166 LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f \ 167 -size -10000000c -exec grep 'GNU @PACKAGE@' \ 168 /dev/null '{}' ';' 2>/dev/null; \ 169 else \ 170 LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null; \ 171 fi; \ 172 } | grep -v 'libtool:' >/dev/null; then \ 173 package_gnu=yes; \ 174 else \ 175 package_gnu=no; \ 176 fi; \ 177 }; \ 178 if test "$$package_gnu" = "yes"; then \ 179 package_prefix='GNU '; \ 180 else \ 181 package_prefix=''; \ 182 fi; \ 183 if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ 184 msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ 185 else \ 186 msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ 187 fi; \ 188 case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ 189 '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ 190 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ 191 --directory=$(top_builddir) \ 192 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ 193 --files-from=$(srcdir)/POTFILES.in \ 194 --copyright-holder='$(COPYRIGHT_HOLDER)' \ 195 --msgid-bugs-address="$$msgid_bugs_address" \ 196 ;; \ 197 *) \ 198 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ 199 --directory=$(top_builddir) \ 200 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ 201 --files-from=$(srcdir)/POTFILES.in \ 202 --copyright-holder='$(COPYRIGHT_HOLDER)' \ 203 --package-name="$${package_prefix}@PACKAGE@" \ 204 --package-version='@VERSION@' \ 205 --msgid-bugs-address="$$msgid_bugs_address" \ 206 ;; \ 207 esac 208 perl $(srcdir)/at-expand.pl < $(DOMAIN).po > $(DOMAIN).po.new 209 mv $(DOMAIN).po $(DOMAIN).po.bak 210 mv $(DOMAIN).po.new $(DOMAIN).po 211 test ! -f $(DOMAIN).po || { \ 212 if test -f $(srcdir)/$(DOMAIN).pot-header; then \ 213 sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ 214 cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po; \ 215 rm -f $(DOMAIN).1po; \ 216 fi; \ 217 if test -f $(srcdir)/$(DOMAIN).pot; then \ 218 sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ 219 sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ 220 if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ 221 rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ 222 else \ 223 rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ 224 mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ 225 fi; \ 226 else \ 227 mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ 228 fi; \ 229 } 230 231# This rule has no dependencies: we don't need to update $(DOMAIN).pot at 232# every "make" invocation, only create it when it is missing. 233# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. 234$(srcdir)/$(DOMAIN).pot: 235 $(MAKE) $(DOMAIN).pot-update 236 237# This target rebuilds a PO file if $(DOMAIN).pot has changed. 238# Note that a PO file is not touched if it doesn't need to be changed. 239$(POFILES): $(POFILESDEPS) 240 @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ 241 if test -f "$(srcdir)/$${lang}.po"; then \ 242 test -f $(srcdir)/$(DOMAIN).pot || $(MAKE) $(srcdir)/$(DOMAIN).pot; \ 243 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ 244 echo "$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot"; \ 245 cd $(srcdir) \ 246 && { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ 247 '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ 248 $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ 249 *) \ 250 $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot;; \ 251 esac; \ 252 }; \ 253 else \ 254 $(MAKE) $${lang}.po-create; \ 255 fi 256 257 258install: install-exec install-data 259install-exec: 260install-data: install-data-@USE_NLS@ 261 if test "$(PACKAGE)" = "gettext-tools"; then \ 262 $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ 263 for file in $(DISTFILES.common) Makevars.template; do \ 264 $(INSTALL_DATA) $(srcdir)/$$file \ 265 $(DESTDIR)$(gettextsrcdir)/$$file; \ 266 done; \ 267 for file in Makevars; do \ 268 rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ 269 done; \ 270 else \ 271 : ; \ 272 fi 273install-data-no: all 274install-data-yes: all 275 @catalogs='$(CATALOGS)'; \ 276 for cat in $$catalogs; do \ 277 cat=`basename $$cat`; \ 278 lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ 279 dir=$(localedir)/$$lang/LC_MESSAGES; \ 280 $(mkdir_p) $(DESTDIR)$$dir; \ 281 if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ 282 $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ 283 echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ 284 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 285 if test -n "$$lc"; then \ 286 if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ 287 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 288 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 289 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 290 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 291 for file in *; do \ 292 if test -f $$file; then \ 293 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 294 fi; \ 295 done); \ 296 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 297 else \ 298 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ 299 :; \ 300 else \ 301 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ 302 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 303 fi; \ 304 fi; \ 305 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ 306 ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ 307 ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ 308 cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ 309 echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ 310 fi; \ 311 done; \ 312 done 313 314install-strip: install 315 316installdirs: installdirs-exec installdirs-data 317installdirs-exec: 318installdirs-data: installdirs-data-@USE_NLS@ 319 if test "$(PACKAGE)" = "gettext-tools"; then \ 320 $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ 321 else \ 322 : ; \ 323 fi 324installdirs-data-no: 325installdirs-data-yes: 326 @catalogs='$(CATALOGS)'; \ 327 for cat in $$catalogs; do \ 328 cat=`basename $$cat`; \ 329 lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ 330 dir=$(localedir)/$$lang/LC_MESSAGES; \ 331 $(mkdir_p) $(DESTDIR)$$dir; \ 332 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 333 if test -n "$$lc"; then \ 334 if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ 335 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 336 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 337 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 338 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 339 for file in *; do \ 340 if test -f $$file; then \ 341 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 342 fi; \ 343 done); \ 344 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 345 else \ 346 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ 347 :; \ 348 else \ 349 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ 350 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 351 fi; \ 352 fi; \ 353 fi; \ 354 done; \ 355 done 356 357# Define this as empty until I found a useful application. 358installcheck: 359 360uninstall: uninstall-exec uninstall-data 361uninstall-exec: 362uninstall-data: uninstall-data-@USE_NLS@ 363 if test "$(PACKAGE)" = "gettext-tools"; then \ 364 for file in $(DISTFILES.common) Makevars.template; do \ 365 rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ 366 done; \ 367 else \ 368 : ; \ 369 fi 370uninstall-data-no: 371uninstall-data-yes: 372 catalogs='$(CATALOGS)'; \ 373 for cat in $$catalogs; do \ 374 cat=`basename $$cat`; \ 375 lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ 376 for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ 377 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ 378 done; \ 379 done 380 381fullcheck check: all 382 383info dvi ps pdf html tags TAGS ctags CTAGS ID: 384 385mostlyclean: 386 rm -f remove-potcdate.sed 387 rm -f stamp-poT 388 rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po 389 rm -f $(DOMAIN).po.bak 390 rm -fr *.o 391 392clean: mostlyclean 393 394distclean: clean 395 rm -f Makefile Makefile.in POTFILES *.mo 396 397maintainer-clean: distclean 398 @echo "This command is intended for maintainers to use;" 399 @echo "it deletes files that may require special tools to rebuild." 400 rm -f stamp-po $(GMOFILES) 401 402distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) 403dist distdir: 404 test -z "$(DISTFILESDEPS)" || $(MAKE) $(DISTFILESDEPS) 405 @$(MAKE) dist2 406# This is a separate target because 'update-po' must be executed before. 407dist2: stamp-po $(DISTFILES) 408 dists="$(DISTFILES)"; \ 409 if test "$(PACKAGE)" = "gettext-tools"; then \ 410 dists="$$dists Makevars.template"; \ 411 fi; \ 412 if test -f $(srcdir)/$(DOMAIN).pot; then \ 413 dists="$$dists $(DOMAIN).pot stamp-po"; \ 414 fi; \ 415 if test -f $(srcdir)/ChangeLog; then \ 416 dists="$$dists ChangeLog"; \ 417 fi; \ 418 for i in 0 1 2 3 4 5 6 7 8 9; do \ 419 if test -f $(srcdir)/ChangeLog.$$i; then \ 420 dists="$$dists ChangeLog.$$i"; \ 421 fi; \ 422 done; \ 423 if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ 424 for file in $$dists; do \ 425 if test -f $$file; then \ 426 cp -p $$file $(distdir) || exit 1; \ 427 else \ 428 cp -p $(srcdir)/$$file $(distdir) || exit 1; \ 429 fi; \ 430 done 431 432update-po: Makefile 433 $(MAKE) $(DOMAIN).pot-update 434 test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) 435 $(MAKE) update-gmo 436 437# General rule for creating PO files. 438 439.nop.po-create: 440 @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ 441 echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ 442 exit 1 443 444# General rule for updating PO files. 445 446.nop.po-update: 447 @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ 448 if test "$(PACKAGE)" = "gettext-tools" && test "$(CROSS_COMPILING)" != "yes"; then PATH=`pwd`/../src:$$PATH; fi; \ 449 tmpdir=`pwd`; \ 450 echo "$$lang:"; \ 451 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ 452 echo "$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ 453 cd $(srcdir); \ 454 if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ 455 '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ 456 $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ 457 *) \ 458 $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ 459 esac; \ 460 }; then \ 461 if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ 462 rm -f $$tmpdir/$$lang.new.po; \ 463 else \ 464 if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ 465 :; \ 466 else \ 467 echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ 468 exit 1; \ 469 fi; \ 470 fi; \ 471 else \ 472 echo "msgmerge for $$lang.po failed!" 1>&2; \ 473 rm -f $$tmpdir/$$lang.new.po; \ 474 fi 475 476$(DUMMYPOFILES): 477 478update-gmo: Makefile $(GMOFILES) 479 @: 480 481# Recreate Makefile by invoking config.status. Explicitly invoke the shell, 482# because execution permission bits may not work on the current file system. 483# Use @SHELL@, which is the shell determined by autoconf for the use by its 484# scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient. 485Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ 486 cd $(top_builddir) \ 487 && CONFIG_FILES=$(subdir)/$@.in @SHELL@ ./config.status po-directories 488 489force: 490 491# Tell versions [3.59,3.63) of GNU make not to export all variables. 492# Otherwise a system limit (for SysV at least) may be exceeded. 493.NOEXPORT: 494