1
# Makefile for program source directory in GNU NLS utilities package.
2
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
3
# Copyright (C) 2004-2008 Rodney Dawes <dobey.pwns@gmail.com>
5
# This file may be copied and used freely without restrictions. It may
6
# be used in projects which are not available under a GNU Public License,
7
# but which still want to provide support for the GNU gettext functionality.
9
# - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE
10
# instead of PACKAGE and to look for po2tbl in ./ not in intl/
12
# - Modified by jacob berkman <jacob@ximian.com> to install
13
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
15
# - Modified by Rodney Dawes <dobey.pwns@gmail.com> for use with intltool
17
# We have the following line for use by intltoolize:
20
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
27
top_srcdir = @top_srcdir@
28
top_builddir = @top_builddir@
32
exec_prefix = @exec_prefix@
34
datarootdir = @datarootdir@
36
DATADIRNAME = @DATADIRNAME@
37
itlocaledir = $(prefix)/$(DATADIRNAME)/locale
39
install_sh = @install_sh@
40
# Automake >= 1.8 provides @mkdir_p@.
41
# Until it can be supposed, use the safe fallback:
42
mkdir_p = $(install_sh) -d
45
INSTALL_DATA = @INSTALL_DATA@
50
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
51
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
52
MSGMERGE = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
53
GENPOT = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
55
ALL_LINGUAS = @ALL_LINGUAS@
57
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi)
59
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi)
61
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
63
POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
65
DISTFILES = Makefile.in.in POTFILES.in $(POFILES)
66
EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS
69
# This comment gets stripped out
71
CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
74
.SUFFIXES: .po .pox .gmo .mo .msg .cat
76
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
77
INTLTOOL_V_MSGFMT = $(INTLTOOL__v_MSGFMT_$(V))
78
INTLTOOL__v_MSGFMT_= $(INTLTOOL__v_MSGFMT_$(AM_DEFAULT_VERBOSITY))
79
INTLTOOL__v_MSGFMT_0 = @echo " MSGFMT" $@;
82
$(MAKE) $(GETTEXT_PACKAGE).pot
83
$(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox
86
$(INTLTOOL_V_MSGFMT)$(MSGFMT) -o $@ $<
89
$(INTLTOOL_V_MSGFMT)file=`echo $* | sed 's,.*/,,'`.gmo \
90
&& rm -f $$file && $(GMSGFMT) -o $$file $<
93
sed -f ../intl/po2msg.sed < $< > $*.msg \
94
&& rm -f $@ && gencat $@ $*.msg
102
$(GETTEXT_PACKAGE).pot: $(POTFILES)
105
install: install-data
106
install-data: install-data-@USE_NLS@
108
install-data-yes: all
109
linguas="$(USE_LINGUAS)"; \
110
for lang in $$linguas; do \
111
dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
113
if test -r $$lang.gmo; then \
114
$(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
115
echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \
117
$(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
118
echo "installing $(srcdir)/$$lang.gmo as" \
119
"$$dir/$(GETTEXT_PACKAGE).mo"; \
121
if test -r $$lang.gmo.m; then \
122
$(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
123
echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
125
if test -r $(srcdir)/$$lang.gmo.m ; then \
126
$(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \
127
$$dir/$(GETTEXT_PACKAGE).mo.m; \
128
echo "installing $(srcdir)/$$lang.gmo.m as" \
129
"$$dir/$(GETTEXT_PACKAGE).mo.m"; \
136
# Empty stubs to satisfy archaic automake needs
137
dvi info ctags tags CTAGS TAGS ID:
139
# Define this as empty until I found a useful application.
140
install-exec installcheck:
143
linguas="$(USE_LINGUAS)"; \
144
for lang in $$linguas; do \
145
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
146
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
149
check: all $(GETTEXT_PACKAGE).pot
150
rm -f missing notexist
151
srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
152
if [ -r missing -o -r notexist ]; then \
157
rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
158
rm -f .intltool-merge-cache
163
rm -f Makefile Makefile.in POTFILES stamp-it
164
rm -f *.mo *.msg *.cat *.cat.m *.gmo
166
maintainer-clean: distclean
167
@echo "This command is intended for maintainers to use;"
168
@echo "it deletes files that may require special tools to rebuild."
171
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
172
dist distdir: $(DISTFILES)
173
dists="$(DISTFILES)"; \
174
extra_dists="$(EXTRA_DISTFILES)"; \
175
for file in $$extra_dists; do \
176
test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \
178
for file in $$dists; do \
179
test -f $$file || file="$(srcdir)/$$file"; \
180
ln $$file $(distdir) 2> /dev/null \
181
|| cp -p $$file $(distdir); \
185
$(MAKE) $(GETTEXT_PACKAGE).pot
187
linguas="$(USE_LINGUAS)"; \
188
for lang in $$linguas; do \
190
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
192
if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
193
rm -f $$tmpdir/$$lang.new.po; \
195
if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
198
echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
199
rm -f $$tmpdir/$$lang.new.po; \
204
echo "msgmerge for $$lang.gmo failed!"; \
205
rm -f $$tmpdir/$$lang.new.po; \
209
Makefile POTFILES: stamp-it
210
@if test ! -f $@; then \
215
stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
217
&& CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
218
$(SHELL) ./config.status
220
# Tell versions [3.59,3.63) of GNU make not to export all variables.
221
# Otherwise a system limit (for SysV at least) may be exceeded.