Makefile.in.in revision 65f0aab98b20b5994a726ab90d355248bcddfffd
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 = @MKINSTALLDIRS@
33mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
34
35GMSGFMT = @GMSGFMT@
36MSGFMT = @MSGFMT@
37XGETTEXT = @XGETTEXT@
38MSGMERGE = msgmerge
39MSGMERGE_UPDATE = @MSGMERGE@ --update
40MSGINIT = msginit
41MSGCONV = msgconv
42MSGFILTER = msgfilter
43
44POFILES = @POFILES@
45GMOFILES = @GMOFILES@
46UPDATEPOFILES = @UPDATEPOFILES@
47DUMMYPOFILES = @DUMMYPOFILES@
48DISTFILES.common = Makefile.in.in remove-potcdate.sin \
49$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3)
50DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \
51$(POFILES) $(GMOFILES) \
52$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)
53
54POTFILES = \
55
56CATALOGS = @CATALOGS@
57
58# Makevars gets inserted here. (Don't remove this line!)
59
60.SUFFIXES:
61.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update
62
63.po.mo:
64	$(E) "$(MSGFMT) -c -o $@ $<"
65	$(Q) $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@
66
67.po.gmo:
68	@lang=`echo $* | sed -e 's,.*/,,'`; \
69	test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
70	echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \
71	cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo
72
73.sin.sed:
74	sed -e '/^#/d' $< > t-$@
75	mv t-$@ $@
76
77
78all: all-@USE_NLS@
79
80all-yes: @MAINTAINER_CMT@stamp-po
81all-no:
82
83# stamp-po is a timestamp denoting the last time at which the CATALOGS have
84# been loosely updated. Its purpose is that when a developer or translator
85# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS,
86# "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent
87# invocations of "make" will do nothing. This timestamp would not be necessary
88# if updating the $(CATALOGS) would always touch them; however, the rule for
89# $(POFILES) has been designed to not touch files that don't need to be
90# changed.
91stamp-po: $(srcdir)/$(DOMAIN).pot
92	test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES)
93	@echo "touch stamp-po"
94	@echo timestamp > stamp-poT
95	@mv stamp-poT stamp-po
96
97# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update',
98# otherwise packages like GCC can not be built if only parts of the source
99# have been downloaded.
100
101# This target rebuilds $(DOMAIN).pot; it is an expensive operation.
102# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.
103$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed \
104	$(srcdir)/at-expand.pl
105	$(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \
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
272check: 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
283clean: mostlyclean
284
285distclean: clean
286	rm -f Makefile Makefile.in POTFILES *.mo
287
288maintainer-clean: distclean
289	@echo "This command is intended for maintainers to use;"
290	@echo "it deletes files that may require special tools to rebuild."
291	rm -f stamp-po $(GMOFILES)
292
293distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
294dist distdir:
295	$(MAKE) update-po
296	@$(MAKE) dist2
297# This is a separate target because 'update-po' must be executed before.
298dist2: $(DISTFILES)
299	dists="$(DISTFILES)"; \
300	if test "$(PACKAGE)" = "gettext-tools"; then \
301	  dists="$$dists Makevars.template"; \
302	fi; \
303	if test -f $(srcdir)/ChangeLog; then \
304	  dists="$$dists ChangeLog"; \
305	fi; \
306	for i in 0 1 2 3 4 5 6 7 8 9; do \
307	  if test -f $(srcdir)/ChangeLog.$$i; then \
308	    dists="$$dists ChangeLog.$$i"; \
309	  fi; \
310	done; \
311	if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \
312	for file in $$dists; do \
313	  if test -f $$file; then \
314	    cp -p $$file $(distdir); \
315	  else \
316	    cp -p $(srcdir)/$$file $(distdir); \
317	  fi; \
318	done
319
320update-po: Makefile
321	$(MAKE) $(DOMAIN).pot-update
322	test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES)
323	$(MAKE) update-gmo
324
325# General rule for creating PO files.
326
327.nop.po-create:
328	@lang=`echo $@ | sed -e 's/\.po-create$$//'`; \
329	echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \
330	exit 1
331
332# General rule for updating PO files.
333
334.nop.po-update:
335	@lang=`echo $@ | sed -e 's/\.po-update$$//'`; \
336	if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \
337	tmpdir=`pwd`; \
338	echo "$$lang:"; \
339	test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
340	echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \
341	cd $(srcdir); \
342	if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \
343	  if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
344	    rm -f $$tmpdir/$$lang.new.po; \
345	  else \
346	    if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
347	      :; \
348	    else \
349	      echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
350	      exit 1; \
351	    fi; \
352	  fi; \
353	else \
354	  echo "msgmerge for $$lang.po failed!" 1>&2; \
355	  rm -f $$tmpdir/$$lang.new.po; \
356	fi
357
358$(DUMMYPOFILES):
359
360update-gmo: Makefile $(GMOFILES)
361	@:
362
363Makefile: Makefile.in.in $(top_builddir)/config.status @POMAKEFILEDEPS@
364	cd $(top_builddir) \
365	  && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
366	       $(SHELL) ./config.status
367
368force:
369
370# Tell versions [3.59,3.63) of GNU make not to export all variables.
371# Otherwise a system limit (for SysV at least) may be exceeded.
372.NOEXPORT:
373