Results of running "make update-po"
[freeciv.git] / translations / nations / Makefile.in.in
blob983ee25388a5384674fdb7cd2fa589b4521c31d8
1 # Makefile for program source directory in GNU NLS utilities package.
2 # Copyright (C) 1995-1997, 2000, 2001 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
4 # This file file be copied and used freely without restrictions.  It can
5 # be used in projects which are not available under the GNU Public License
6 # but which still want to provide support for the GNU gettext functionality.
7 # Please note that the actual code is *not* freely available.
9 PACKAGE = freeciv-nations
10 VERSION = @VERSION@
12 # These two variables depend on the location of this directory.
13 subdir = translations/nations
14 top_builddir = ../..
16 SHELL = /bin/sh
17 @SET_MAKE@
19 srcdir = @srcdir@
20 top_srcdir = @top_srcdir@
21 VPATH = @srcdir@
23 prefix = @prefix@
24 exec_prefix = @exec_prefix@
25 datarootdir = @datarootdir@
26 datadir = @datadir@
27 localedir = @localedir@
28 gettextsrcdir = $(datadir)/gettext/po
30 INSTALL = @INSTALL@
31 INSTALL_DATA = @INSTALL_DATA@
32 MKINSTALLDIRS = @MKINSTALLDIRS@
33 mkinstalldirs = @MKDIR_P@
35 CC = @CC@
36 GMSGFMT = @GMSGFMT@
37 MSGFMT = @MSGFMT@
38 XGETTEXT = @XGETTEXT@
39 MSGMERGE = msgmerge
41 DEFS = @DEFS@
42 CFLAGS = @CFLAGS@
43 CPPFLAGS = @CPPFLAGS@
45 INCLUDES = -I.. -I$(top_srcdir)/intl
47 COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
49 POFILES = @POFILES@
50 GMOFILES = @GMOFILES@
52 # Keep this in one line, since configure replaces it when NLS disabled
53 DISTFILES = Makefile.in.in POTFILES.in POTFILES.skip $(PACKAGE).pot $(POFILES) $(GMOFILES)
55 POTFILES = \
57 CATALOGS = @CATALOGS@
59 .SUFFIXES:
60 .SUFFIXES: .c .o .po .pox .gmo .mo
62 .c.o:
63         $(COMPILE) $<
65 .po.pox:
66         $(MAKE) $(PACKAGE).pot
67         $(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
69 .po.mo:
70         $(MSGFMT) -o $@ $<
72 .po.gmo:
73         file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
74           && rm -f $$file && $(GMSGFMT) -c --statistics -o $$file $<
77 all: all-@USE_NLS@
79 all-yes: $(CATALOGS)
80 all-no:
82 # Note: Target 'all' must not depend on target '$(srcdir)/$(PACKAGE).pot',
83 # otherwise packages like GCC can not be built if only parts of the source
84 # have been downloaded.
86 $(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in
87         $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
88           --add-comments --keyword=_ --keyword=N_ \
89           --files-from=$(srcdir)/POTFILES.in \
90         && test ! -f $(PACKAGE).po \
91            || ( rm -f $(srcdir)/$(PACKAGE).pot \
92                 && mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot )
95 install: install-exec install-data
96 install-exec:
97 install-data: install-data-@USE_NLS@
98         if test "$(PACKAGE)" = "gettext"; then \
99           $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
100           $(INSTALL_DATA) $(srcdir)/Makefile.in.in \
101                           $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
102         else \
103           : ; \
104         fi
105 install-data-no: all
106 install-data-yes: all
107         $(mkinstalldirs) $(DESTDIR)$(datadir)
108         @catalogs='$(CATALOGS)'; \
109         for cat in $$catalogs; do \
110           cat=`basename $$cat`; \
111           lang=`echo $$cat | sed 's/\.gmo$$//'`; \
112           dir=$(localedir)/$$lang/LC_MESSAGES; \
113           $(mkinstalldirs) $(DESTDIR)$$dir; \
114           if test -r $$cat; then \
115             $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
116             echo "installing $$cat as $(DESTDIR)$$dir/$(PACKAGE).mo"; \
117           else \
118             $(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
119             echo "installing $(srcdir)/$$cat as" \
120                  "$(DESTDIR)$$dir/$(PACKAGE).mo"; \
121           fi; \
122         done
124 # Define this as empty until I found a useful application.
125 installcheck:
127 uninstall:
128         catalogs='$(CATALOGS)'; \
129         for cat in $$catalogs; do \
130           cat=`basename $$cat`; \
131           lang=`echo $$cat | sed 's/\.gmo$$//'`; \
132           rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE).mo; \
133         done
134         if test "$(PACKAGE)" = "gettext"; then \
135           rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
136         else \
137           : ; \
138         fi
140 check: all
142 dvi info tags TAGS ID:
144 mostlyclean:
145         rm -f core core.* *.pox $(PACKAGE).po *.new.po
146         rm -fr *.o
148 clean: mostlyclean
150 distclean: clean
151         rm -f Makefile Makefile.in POTFILES *.mo
153 maintainer-clean: distclean
154         @echo "This command is intended for maintainers to use;"
155         @echo "it deletes files that may require special tools to rebuild."
156         rm -f $(GMOFILES)
158 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
160 # If you change following line, update also configure.ac where it
161 # builds Makefile if NLS disabled.
162 dist distdir:
163         $(MAKE) update-po
164         @$(MAKE) dist2
165 # This is a separate target because 'update-po' must be executed before.
166 dist2: $(DISTFILES)
167         dists="$(DISTFILES)"; \
168         for file in $$dists; do \
169           if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
170           cp -p $$dir/$$file $(distdir); \
171         done
173 # If you change following line, update also configure.ac where it
174 # builds Makefile if NLS disabled.
175 update-po: Makefile
176         $(MAKE) $(PACKAGE).pot
177         if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \
178         cd $(srcdir); \
179         catalogs='$(GMOFILES)'; \
180         for cat in $$catalogs; do \
181           cat=`basename $$cat`; \
182           lang=`echo $$cat | sed 's/\.gmo$$//'`; \
183           if test -x "$(builddir)/$$lang.po" ; then \
184             dir="$(builddir)"; \
185           else \
186             dir=. ; \
187           fi; \
188           echo "$$lang:"; \
189           if $(MSGMERGE) $$dir/$$lang.po $(PACKAGE).pot -o $$lang.new.po; then \
190             mv -f $$lang.new.po $$dir/$$lang.po; \
191           else \
192             echo "msgmerge for $$cat failed!"; \
193             rm -f $$lang.new.po; \
194           fi; \
195         done
196         $(MAKE) update-gmo
198 update-gmo: Makefile $(GMOFILES)
199         @:
201 Makefile: Makefile.in.in $(top_builddir)/config.status POTFILES.in
202         cd $(top_builddir) \
203           && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
204                $(SHELL) ./config.status
206 # Tell versions [3.59,3.63) of GNU make not to export all variables.
207 # Otherwise a system limit (for SysV at least) may be exceeded.
208 .NOEXPORT: