1# Makefile for PO directory in any package using GNU gettext. 2# Copyright (C) 1995-1997, 2000-2004 by Ulrich Drepper <drepper@gnu.ai.mit.edu> 3# 4# This file can be copied and used freely without restrictions. It can 5# be used in projects which are not available under the GNU General Public 6# License but which still want to provide support for the GNU gettext 7# functionality. 8# Please note that the actual code of GNU gettext is covered by the GNU 9# General Public License and is *not* in the public domain. 10# 11# Origin: gettext-0.14 12 13PACKAGE = @PACKAGE@ 14VERSION = @VERSION@ 15 16SHELL = /bin/sh 17@SET_MAKE@ 18 19srcdir = @srcdir@ 20top_srcdir = @top_srcdir@ 21VPATH = @srcdir@ 22 23prefix = @prefix@ 24exec_prefix = @exec_prefix@ 25datarootdir = @datarootdir@ 26datadir = @datadir@ 27localedir = $(datadir)/locale 28gettextsrcdir = $(datadir)/gettext/po 29 30INSTALL = @INSTALL@ 31INSTALL_DATA = @INSTALL_DATA@ 32mkinstalldirs = @MKDIR_P@ 33 34GMSGFMT = @GMSGFMT@ 35MSGFMT = @MSGFMT@ 36XGETTEXT = @XGETTEXT@ 37MSGMERGE = msgmerge 38MSGMERGE_UPDATE = @MSGMERGE@ --update 39MSGINIT = msginit 40MSGCONV = msgconv 41MSGFILTER = msgfilter 42 43POFILES = @POFILES@ 44GMOFILES = @GMOFILES@ 45UPDATEPOFILES = @UPDATEPOFILES@ 46DUMMYPOFILES = @DUMMYPOFILES@ 47DISTFILES.common = Makefile.in.in remove-potcdate.sin \ 48$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) 49DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \ 50$(POFILES) $(GMOFILES) \ 51$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) 52 53POTFILES = \ 54 55CATALOGS = @CATALOGS@ 56 57# Makevars gets inserted here. (Don't remove this line!) 58 59.SUFFIXES: 60.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update 61 62.po.mo: 63 $(E) "$(MSGFMT) -c -o $@ $<" 64 $(Q) $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ 65 66.po.gmo: 67 @lang=`echo $* | sed -e 's,.*/,,'`; \ 68 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ 69 echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ 70 cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo 71 72.sin.sed: 73 sed -e '/^#/d' $< > t-$@ 74 mv t-$@ $@ 75 76 77all: all-@USE_NLS@ 78 79all-yes: @MAINTAINER_CMT@stamp-po 80all-no: 81 82# stamp-po is a timestamp denoting the last time at which the CATALOGS have 83# been loosely updated. Its purpose is that when a developer or translator 84# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, 85# "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent 86# invocations of "make" will do nothing. This timestamp would not be necessary 87# if updating the $(CATALOGS) would always touch them; however, the rule for 88# $(POFILES) has been designed to not touch files that don't need to be 89# changed. 90stamp-po: $(srcdir)/$(DOMAIN).pot 91 test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) 92 @echo "touch stamp-po" 93 @echo timestamp > stamp-poT 94 @mv stamp-poT stamp-po 95 96# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', 97# otherwise packages like GCC can not be built if only parts of the source 98# have been downloaded. 99 100# This target rebuilds $(DOMAIN).pot; it is an expensive operation. 101# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. 102$(DOMAIN).pot-update: $(srcdir)/POTFILES.in remove-potcdate.sed \ 103 $(srcdir)/at-expand.pl 104 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ 105 --directory=$(top_builddir) \ 106 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ 107 --files-from=$(srcdir)/POTFILES.in \ 108 --copyright-holder='$(COPYRIGHT_HOLDER)' \ 109 --msgid-bugs-address='$(MSGID_BUGS_ADDRESS)' 110 perl $(srcdir)/at-expand.pl < $(DOMAIN).po > $(DOMAIN).po.new 111 mv $(DOMAIN).po $(DOMAIN).po.bak 112 mv $(DOMAIN).po.new $(DOMAIN).po 113 test ! -f $(DOMAIN).po || { \ 114 if test -f $(srcdir)/$(DOMAIN).pot; then \ 115 sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ 116 sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ 117 if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ 118 rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ 119 else \ 120 rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ 121 mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ 122 fi; \ 123 else \ 124 mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ 125 fi; \ 126 } 127 128# This rule has no dependencies: we don't need to update $(DOMAIN).pot at 129# every "make" invocation, only create it when it is missing. 130# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. 131$(srcdir)/$(DOMAIN).pot: 132 $(MAKE) $(DOMAIN).pot-update 133 134# This target rebuilds a PO file if $(DOMAIN).pot has changed. 135# Note that a PO file is not touched if it doesn't need to be changed. 136$(POFILES): $(srcdir)/$(DOMAIN).pot 137 @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ 138 if test -f "$(srcdir)/$${lang}.po"; then \ 139 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ 140 echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ 141 cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \ 142 else \ 143 $(MAKE) $${lang}.po-create; \ 144 fi 145 146 147install: install-exec install-data 148install-exec: 149install-data: install-data-@USE_NLS@ 150 if test "$(PACKAGE)" = "gettext-tools"; then \ 151 $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ 152 for file in $(DISTFILES.common) Makevars.template; do \ 153 $(INSTALL_DATA) $(srcdir)/$$file \ 154 $(DESTDIR)$(gettextsrcdir)/$$file; \ 155 done; \ 156 for file in Makevars; do \ 157 rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ 158 done; \ 159 else \ 160 : ; \ 161 fi 162install-data-no: all 163install-data-yes: all 164 $(mkinstalldirs) $(DESTDIR)$(datadir) 165 @catalogs='$(CATALOGS)'; \ 166 for cat in $$catalogs; do \ 167 cat=`basename $$cat`; \ 168 lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ 169 dir=$(localedir)/$$lang/LC_MESSAGES; \ 170 $(mkinstalldirs) $(DESTDIR)$$dir; \ 171 if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ 172 $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ 173 echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ 174 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 175 if test -n "$$lc"; then \ 176 if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ 177 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 178 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 179 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 180 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 181 for file in *; do \ 182 if test -f $$file; then \ 183 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 184 fi; \ 185 done); \ 186 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 187 else \ 188 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ 189 :; \ 190 else \ 191 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ 192 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 193 fi; \ 194 fi; \ 195 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ 196 ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ 197 ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ 198 cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ 199 echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ 200 fi; \ 201 done; \ 202 done 203 204install-strip: install 205 206installdirs: installdirs-exec installdirs-data 207installdirs-exec: 208installdirs-data: installdirs-data-@USE_NLS@ 209 if test "$(PACKAGE)" = "gettext-tools"; then \ 210 $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ 211 else \ 212 : ; \ 213 fi 214installdirs-data-no: 215installdirs-data-yes: 216 $(mkinstalldirs) $(DESTDIR)$(datadir) 217 @catalogs='$(CATALOGS)'; \ 218 for cat in $$catalogs; do \ 219 cat=`basename $$cat`; \ 220 lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ 221 dir=$(localedir)/$$lang/LC_MESSAGES; \ 222 $(mkinstalldirs) $(DESTDIR)$$dir; \ 223 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 224 if test -n "$$lc"; then \ 225 if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ 226 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 227 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 228 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 229 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 230 for file in *; do \ 231 if test -f $$file; then \ 232 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 233 fi; \ 234 done); \ 235 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 236 else \ 237 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ 238 :; \ 239 else \ 240 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ 241 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 242 fi; \ 243 fi; \ 244 fi; \ 245 done; \ 246 done 247 248# Define this as empty until I found a useful application. 249installcheck: 250 251uninstall: uninstall-exec uninstall-data 252uninstall-exec: 253uninstall-data: uninstall-data-@USE_NLS@ 254 if test "$(PACKAGE)" = "gettext-tools"; then \ 255 for file in $(DISTFILES.common) Makevars.template; do \ 256 rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ 257 done; \ 258 else \ 259 : ; \ 260 fi 261uninstall-data-no: 262uninstall-data-yes: 263 catalogs='$(CATALOGS)'; \ 264 for cat in $$catalogs; do \ 265 cat=`basename $$cat`; \ 266 lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ 267 for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ 268 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ 269 done; \ 270 done 271 272fullcheck check: all 273 274info dvi ps pdf html tags TAGS ctags CTAGS ID: 275 276mostlyclean: 277 rm -f remove-potcdate.sed 278 rm -f stamp-poT 279 rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po 280 rm -f $(DOMAIN).po.bak 281 rm -fr *.o 282 283coverage.txt:: 284 285clean:: mostlyclean 286 287distclean: clean 288 rm -f Makefile Makefile.in POTFILES *.mo 289 290maintainer-clean: distclean 291 @echo "This command is intended for maintainers to use;" 292 @echo "it deletes files that may require special tools to rebuild." 293 rm -f stamp-po $(GMOFILES) 294 295distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) 296dist distdir: 297 $(MAKE) update-po 298 @$(MAKE) dist2 299# This is a separate target because 'update-po' must be executed before. 300dist2: $(DISTFILES) 301 dists="$(DISTFILES)"; \ 302 if test "$(PACKAGE)" = "gettext-tools"; then \ 303 dists="$$dists Makevars.template"; \ 304 fi; \ 305 if test -f $(srcdir)/ChangeLog; then \ 306 dists="$$dists ChangeLog"; \ 307 fi; \ 308 for i in 0 1 2 3 4 5 6 7 8 9; do \ 309 if test -f $(srcdir)/ChangeLog.$$i; then \ 310 dists="$$dists ChangeLog.$$i"; \ 311 fi; \ 312 done; \ 313 if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ 314 for file in $$dists; do \ 315 if test -f $$file; then \ 316 cp -p $$file $(distdir); \ 317 else \ 318 cp -p $(srcdir)/$$file $(distdir); \ 319 fi; \ 320 done 321 322update-po: Makefile 323 $(MAKE) $(DOMAIN).pot-update 324 test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) 325 $(MAKE) update-gmo 326 327# General rule for creating PO files. 328 329.nop.po-create: 330 @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ 331 echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ 332 exit 1 333 334# General rule for updating PO files. 335 336.nop.po-update: 337 @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ 338 if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ 339 tmpdir=`pwd`; \ 340 echo "$$lang:"; \ 341 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ 342 echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ 343 cd $(srcdir); \ 344 if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ 345 if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ 346 rm -f $$tmpdir/$$lang.new.po; \ 347 else \ 348 if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ 349 :; \ 350 else \ 351 echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ 352 exit 1; \ 353 fi; \ 354 fi; \ 355 else \ 356 echo "msgmerge for $$lang.po failed!" 1>&2; \ 357 rm -f $$tmpdir/$$lang.new.po; \ 358 fi 359 360$(DUMMYPOFILES): 361 362update-gmo: Makefile $(GMOFILES) 363 @: 364 365Makefile: Makefile.in.in $(top_builddir)/config.status @POMAKEFILEDEPS@ 366 cd $(top_builddir) \ 367 && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ 368 $(SHELL) ./config.status 369 370force: 371 372# Tell versions [3.59,3.63) of GNU make not to export all variables. 373# Otherwise a system limit (for SysV at least) may be exceeded. 374.NOEXPORT: 375