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>
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.
9 # Origin: gettext-0.19.8
10 GETTEXT_MACRO_VERSION = 0.19
14 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
21 top_srcdir = @top_srcdir@
25 exec_prefix = @exec_prefix@
26 datarootdir = @datarootdir@
28 localedir = @localedir@
29 gettextsrcdir = $(datadir)/gettext/po
32 INSTALL_DATA = @INSTALL_DATA@
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.
41 mkinstalldirs = $(SHELL) @install_sh@ -d
42 install_sh = $(SHELL) @install_sh@
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.
49 CROSS_COMPILING = @CROSS_COMPILING@
52 GMSGFMT_no = @GMSGFMT@
53 GMSGFMT_yes = @GMSGFMT_015@
54 GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT))
57 MSGFMT_yes = @MSGFMT_015@
58 MSGFMT = $(MSGFMT_$(USE_MSGCTXT))
59 XGETTEXT_ = @XGETTEXT@
60 XGETTEXT_no = @XGETTEXT@
61 XGETTEXT_yes = @XGETTEXT_015@
62 XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT))
64 MSGMERGE_UPDATE = @MSGMERGE@ --update
71 UPDATEPOFILES = @UPDATEPOFILES@
72 DUMMYPOFILES = @DUMMYPOFILES@
73 DISTFILES.common = Makefile.in.in remove-potcdate.sin \
74 $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3)
75 DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \
76 $(POFILES) $(GMOFILES) \
77 $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)
83 POFILESDEPS_ = $(srcdir)/$(DOMAIN).pot
84 POFILESDEPS_yes = $(POFILESDEPS_)
86 POFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT))
88 DISTFILESDEPS_ = update-po
89 DISTFILESDEPS_yes = $(DISTFILESDEPS_)
91 DISTFILESDEPS = $(DISTFILESDEPS_$(DIST_DEPENDS_ON_UPDATE_PO))
93 # Makevars gets inserted here. (Don't remove this line!)
96 .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update
99 $(E) "$(MSGFMT) -c -o $@ $<"; \
100 $(Q) $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@
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
109 sed -e '/^#/d' $< > t-$@
115 all-yes: @MAINTAINER_CMT@stamp-po
121 # Ensure that the gettext macros and this Makefile.in.in are in sync.
122 CHECK_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; \
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).
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
142 stamp-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; \
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.
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; \
170 LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null; \
172 } | grep -v 'libtool:' >/dev/null; then \
178 if test "$$package_gnu" = "yes"; then \
179 package_prefix='GNU '; \
183 if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \
184 msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \
186 msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \
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" \
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" \
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; \
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; \
223 rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \
224 mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \
227 mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \
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
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"; \
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;; \
250 $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot;; \
254 $(MAKE) $${lang}.po-create; \
258 install: install-exec install-data
260 install-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; \
267 for file in Makevars; do \
268 rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
274 install-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 && \
292 if test -f $$file; then \
293 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
296 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
298 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
301 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
302 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
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"; \
314 install-strip: install
316 installdirs: installdirs-exec installdirs-data
318 installdirs-data: installdirs-data-@USE_NLS@
319 if test "$(PACKAGE)" = "gettext-tools"; then \
320 $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \
325 installdirs-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 && \
340 if test -f $$file; then \
341 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
344 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
346 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
349 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
350 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
357 # Define this as empty until I found a useful application.
360 uninstall: uninstall-exec uninstall-data
362 uninstall-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; \
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; \
383 info dvi ps pdf html tags TAGS ctags CTAGS ID:
386 rm -f remove-potcdate.sed
388 rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po
389 rm -f $(DOMAIN).po.bak
395 rm -f Makefile Makefile.in POTFILES *.mo
397 maintainer-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)
402 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
404 test -z "$(DISTFILESDEPS)" || $(MAKE) $(DISTFILESDEPS)
406 # This is a separate target because 'update-po' must be executed before.
407 dist2: stamp-po $(DISTFILES)
408 dists="$(DISTFILES)"; \
409 if test "$(PACKAGE)" = "gettext-tools"; then \
410 dists="$$dists Makevars.template"; \
412 if test -f $(srcdir)/$(DOMAIN).pot; then \
413 dists="$$dists $(DOMAIN).pot stamp-po"; \
415 if test -f $(srcdir)/ChangeLog; then \
416 dists="$$dists ChangeLog"; \
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"; \
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; \
428 cp -p $(srcdir)/$$file $(distdir) || exit 1; \
433 $(MAKE) $(DOMAIN).pot-update
434 test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES)
437 # General rule for creating PO files.
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; \
444 # General rule for updating PO files.
447 @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \
448 if test "$(PACKAGE)" = "gettext-tools" && test "$(CROSS_COMPILING)" != "yes"; then PATH=`pwd`/../src:$$PATH; fi; \
451 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
452 echo "$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \
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;; \
458 $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \
461 if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
462 rm -f $$tmpdir/$$lang.new.po; \
464 if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
467 echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
472 echo "msgmerge for $$lang.po failed!" 1>&2; \
473 rm -f $$tmpdir/$$lang.new.po; \
478 update-gmo: Makefile $(GMOFILES)
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.
485 Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@
487 && CONFIG_FILES=$(subdir)/$@.in @SHELL@ ./config.status po-directories
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.