Whamcloud - gitweb
Clean up e2fsck problem description messages for typo's and to make them
[tools/e2fsprogs.git] / po / Makefile.in.in
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
13 PACKAGE = @PACKAGE@
14 VERSION = @VERSION@
15
16 SHELL = /bin/sh
17 @SET_MAKE@
18
19 srcdir = @srcdir@
20 top_srcdir = @top_srcdir@
21 VPATH = @srcdir@
22
23 prefix = @prefix@
24 exec_prefix = @exec_prefix@
25 datadir = @datadir@
26 localedir = $(datadir)/locale
27 gettextsrcdir = $(datadir)/gettext/po
28
29 INSTALL = @INSTALL@
30 INSTALL_DATA = @INSTALL_DATA@
31 MKINSTALLDIRS = @MKINSTALLDIRS@
32 mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
33
34 GMSGFMT = @GMSGFMT@
35 MSGFMT = @MSGFMT@
36 XGETTEXT = @XGETTEXT@
37 MSGMERGE = msgmerge
38 MSGMERGE_UPDATE = @MSGMERGE@ --update
39 MSGINIT = msginit
40 MSGCONV = msgconv
41 MSGFILTER = msgfilter
42
43 POFILES = @POFILES@
44 GMOFILES = @GMOFILES@
45 UPDATEPOFILES = @UPDATEPOFILES@
46 DUMMYPOFILES = @DUMMYPOFILES@
47 DISTFILES.common = Makefile.in.in remove-potcdate.sin \
48 $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3)
49 DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \
50 $(POFILES) $(GMOFILES) \
51 $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)
52
53 POTFILES = \
54
55 CATALOGS = @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         @echo "$(MSGFMT) -c -o $@ $<"; \
64         $(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
77 all: all-@USE_NLS@
78
79 all-yes: @MAINTAINER_CMT@stamp-po
80 all-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.
90 stamp-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: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed \
103         $(srcdir)/at-expand.pl
104         $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \
105           --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \
106           --files-from=$(srcdir)/POTFILES.in \
107           --copyright-holder='$(COPYRIGHT_HOLDER)' \
108           --msgid-bugs-address='$(MSGID_BUGS_ADDRESS)'
109         perl $(srcdir)/at-expand.pl < $(DOMAIN).po > $(DOMAIN).po.new
110         mv $(DOMAIN).po $(DOMAIN).po.bak
111         mv $(DOMAIN).po.new $(DOMAIN).po
112         test ! -f $(DOMAIN).po || { \
113           if test -f $(srcdir)/$(DOMAIN).pot; then \
114             sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \
115             sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \
116             if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \
117               rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \
118             else \
119               rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \
120               mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \
121             fi; \
122           else \
123             mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \
124           fi; \
125         }
126
127 # This rule has no dependencies: we don't need to update $(DOMAIN).pot at
128 # every "make" invocation, only create it when it is missing.
129 # Only "make $(DOMAIN).pot-update" or "make dist" will force an update.
130 $(srcdir)/$(DOMAIN).pot:
131         $(MAKE) $(DOMAIN).pot-update
132
133 # This target rebuilds a PO file if $(DOMAIN).pot has changed.
134 # Note that a PO file is not touched if it doesn't need to be changed.
135 $(POFILES): $(srcdir)/$(DOMAIN).pot
136         @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \
137         if test -f "$(srcdir)/$${lang}.po"; then \
138           test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
139           echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \
140           cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \
141         else \
142           $(MAKE) $${lang}.po-create; \
143         fi
144
145
146 install: install-exec install-data
147 install-exec:
148 install-data: install-data-@USE_NLS@
149         if test "$(PACKAGE)" = "gettext-tools"; then \
150           $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
151           for file in $(DISTFILES.common) Makevars.template; do \
152             $(INSTALL_DATA) $(srcdir)/$$file \
153                             $(DESTDIR)$(gettextsrcdir)/$$file; \
154           done; \
155           for file in Makevars; do \
156             rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
157           done; \
158         else \
159           : ; \
160         fi
161 install-data-no: all
162 install-data-yes: all
163         $(mkinstalldirs) $(DESTDIR)$(datadir)
164         @catalogs='$(CATALOGS)'; \
165         for cat in $$catalogs; do \
166           cat=`basename $$cat`; \
167           lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
168           dir=$(localedir)/$$lang/LC_MESSAGES; \
169           $(mkinstalldirs) $(DESTDIR)$$dir; \
170           if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \
171           $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \
172           echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \
173           for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
174             if test -n "$$lc"; then \
175               if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
176                 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
177                 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
178                 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
179                 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
180                  for file in *; do \
181                    if test -f $$file; then \
182                      ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
183                    fi; \
184                  done); \
185                 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
186               else \
187                 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
188                   :; \
189                 else \
190                   rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
191                   mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
192                 fi; \
193               fi; \
194               rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
195               ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
196               ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
197               cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
198               echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \
199             fi; \
200           done; \
201         done
202
203 install-strip: install
204
205 installdirs: installdirs-exec installdirs-data
206 installdirs-exec:
207 installdirs-data: installdirs-data-@USE_NLS@
208         if test "$(PACKAGE)" = "gettext-tools"; then \
209           $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
210         else \
211           : ; \
212         fi
213 installdirs-data-no:
214 installdirs-data-yes:
215         $(mkinstalldirs) $(DESTDIR)$(datadir)
216         @catalogs='$(CATALOGS)'; \
217         for cat in $$catalogs; do \
218           cat=`basename $$cat`; \
219           lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
220           dir=$(localedir)/$$lang/LC_MESSAGES; \
221           $(mkinstalldirs) $(DESTDIR)$$dir; \
222           for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
223             if test -n "$$lc"; then \
224               if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
225                 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
226                 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
227                 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
228                 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
229                  for file in *; do \
230                    if test -f $$file; then \
231                      ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
232                    fi; \
233                  done); \
234                 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
235               else \
236                 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
237                   :; \
238                 else \
239                   rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
240                   mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
241                 fi; \
242               fi; \
243             fi; \
244           done; \
245         done
246
247 # Define this as empty until I found a useful application.
248 installcheck:
249
250 uninstall: uninstall-exec uninstall-data
251 uninstall-exec:
252 uninstall-data: uninstall-data-@USE_NLS@
253         if test "$(PACKAGE)" = "gettext-tools"; then \
254           for file in $(DISTFILES.common) Makevars.template; do \
255             rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
256           done; \
257         else \
258           : ; \
259         fi
260 uninstall-data-no:
261 uninstall-data-yes:
262         catalogs='$(CATALOGS)'; \
263         for cat in $$catalogs; do \
264           cat=`basename $$cat`; \
265           lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
266           for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \
267             rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
268           done; \
269         done
270
271 check: all
272
273 info dvi ps pdf html tags TAGS ctags CTAGS ID:
274
275 mostlyclean:
276         rm -f remove-potcdate.sed 
277         rm -f stamp-poT
278         rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po
279         rm -f $(DOMAIN).po.bak
280         rm -fr *.o
281
282 clean: mostlyclean
283
284 distclean: clean
285         rm -f Makefile Makefile.in POTFILES *.mo
286
287 maintainer-clean: distclean
288         @echo "This command is intended for maintainers to use;"
289         @echo "it deletes files that may require special tools to rebuild."
290         rm -f stamp-po $(GMOFILES)
291
292 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
293 dist distdir:
294         $(MAKE) update-po
295         @$(MAKE) dist2
296 # This is a separate target because 'update-po' must be executed before.
297 dist2: $(DISTFILES)
298         dists="$(DISTFILES)"; \
299         if test "$(PACKAGE)" = "gettext-tools"; then \
300           dists="$$dists Makevars.template"; \
301         fi; \
302         if test -f $(srcdir)/ChangeLog; then \
303           dists="$$dists ChangeLog"; \
304         fi; \
305         for i in 0 1 2 3 4 5 6 7 8 9; do \
306           if test -f $(srcdir)/ChangeLog.$$i; then \
307             dists="$$dists ChangeLog.$$i"; \
308           fi; \
309         done; \
310         if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \
311         for file in $$dists; do \
312           if test -f $$file; then \
313             cp -p $$file $(distdir); \
314           else \
315             cp -p $(srcdir)/$$file $(distdir); \
316           fi; \
317         done
318
319 update-po: Makefile
320         $(MAKE) $(DOMAIN).pot-update
321         test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES)
322         $(MAKE) update-gmo
323
324 # General rule for creating PO files.
325
326 .nop.po-create:
327         @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \
328         echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \
329         exit 1
330
331 # General rule for updating PO files.
332
333 .nop.po-update:
334         @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \
335         if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \
336         tmpdir=`pwd`; \
337         echo "$$lang:"; \
338         test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
339         echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \
340         cd $(srcdir); \
341         if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \
342           if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
343             rm -f $$tmpdir/$$lang.new.po; \
344           else \
345             if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
346               :; \
347             else \
348               echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
349               exit 1; \
350             fi; \
351           fi; \
352         else \
353           echo "msgmerge for $$lang.po failed!" 1>&2; \
354           rm -f $$tmpdir/$$lang.new.po; \
355         fi
356
357 $(DUMMYPOFILES):
358
359 update-gmo: Makefile $(GMOFILES)
360         @:
361
362 Makefile: Makefile.in.in $(top_builddir)/config.status @POMAKEFILEDEPS@
363         cd $(top_builddir) \
364           && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
365                $(SHELL) ./config.status
366
367 force:
368
369 # Tell versions [3.59,3.63) of GNU make not to export all variables.
370 # Otherwise a system limit (for SysV at least) may be exceeded.
371 .NOEXPORT: