Rocco Rutte:
[apps/madmutt.git] / po / Makefile.in.in
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>
3 #
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 General 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.
8
9 PACKAGE = @PACKAGE@
10 VERSION = @VERSION@
11
12 # These two variables depend on the location of this directory.
13 subdir = po
14 top_builddir = ..
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) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
33
34 CC = @CC@
35 GMSGFMT = @GMSGFMT@
36 MSGFMT = @MSGFMT@
37 XGETTEXT = @XGETTEXT@
38 MSGMERGE = msgmerge
39
40 DEFS = @DEFS@
41 CFLAGS = @CFLAGS@
42 CPPFLAGS = @CPPFLAGS@
43
44 INCLUDES = -I.. -I$(top_srcdir)/intl
45
46 COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
47
48 POFILES = @POFILES@
49 GMOFILES = @GMOFILES@
50 DISTFILES = Makefile.in.in POTFILES.in $(PACKAGE).pot \
51 $(POFILES) $(GMOFILES)
52
53 POTFILES = \
54
55 CATALOGS = @CATALOGS@
56
57 .SUFFIXES:
58 .SUFFIXES: .c .o .po .pox .gmo .mo
59
60 .c.o:
61         $(COMPILE) $<
62
63 .po.pox:
64         $(MAKE) $(PACKAGE).pot
65         $(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
66
67 .po.mo:
68         $(MSGFMT) -o $@ $<
69
70 .po.gmo:
71         file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
72           && rm -f $$file && $(GMSGFMT) --statistics -o $$file $<
73
74
75 all: all-@USE_NLS@
76
77 all-yes: $(CATALOGS)
78 all-no:
79
80 .PHONY: $(top_srcdir)/keymap_alldefs.h
81 $(top_srcdir)/keymap_alldefs.h:
82         cd .. && $(MAKE) keymap_alldefs.h
83
84 # Note: Target 'all' must not depend on target '$(srcdir)/$(PACKAGE).pot',
85 # otherwise packages like GCC can not be built if only parts of the source
86 # have been downloaded.
87
88 $(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in
89         $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
90           --add-comments --keyword=_ --keyword=N_ \
91           --files-from=$(srcdir)/POTFILES.in \
92         && test ! -f $(PACKAGE).po \
93            || ( rm -f $(srcdir)/$(PACKAGE).pot \
94                 && mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot )
95
96
97 install: install-exec install-data
98 install-exec:
99 install-data: install-data-@USE_NLS@
100         if test "$(PACKAGE)" = "gettext"; then \
101           $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
102           $(INSTALL_DATA) $(srcdir)/Makefile.in.in \
103                           $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
104         else \
105           : ; \
106         fi
107 install-data-no: all
108 install-data-yes: all
109         $(mkinstalldirs) $(DESTDIR)$(datadir)
110         @catalogs='$(CATALOGS)'; \
111         for cat in $$catalogs; do \
112           cat=`basename $$cat`; \
113           lang=`echo $$cat | sed 's/\.gmo$$//'`; \
114           dir=$(localedir)/$$lang/LC_MESSAGES; \
115           $(mkinstalldirs) $(DESTDIR)$$dir; \
116           if test -r $$cat; then \
117             $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
118             echo "installing $$cat as $(DESTDIR)$$dir/$(PACKAGE).mo"; \
119           else \
120             $(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
121             echo "installing $(srcdir)/$$cat as" \
122                  "$(DESTDIR)$$dir/$(PACKAGE).mo"; \
123           fi; \
124         done
125
126 # Define this as empty until I found a useful application.
127 installcheck:
128
129 uninstall:
130         catalogs='$(CATALOGS)'; \
131         for cat in $$catalogs; do \
132           cat=`basename $$cat`; \
133           lang=`echo $$cat | sed 's/\.gmo$$//'`; \
134           rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE).mo; \
135         done
136         if test "$(PACKAGE)" = "gettext"; then \
137           rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
138         else \
139           : ; \
140         fi
141
142 check: all
143
144 dvi info tags TAGS ID:
145
146 mostlyclean:
147         rm -f core core.* *.pox $(PACKAGE).po *.new.po
148         rm -fr *.o
149
150 clean: mostlyclean
151
152 distclean: clean
153         rm -f Makefile Makefile.in POTFILES *.mo *.gmo
154
155 maintainer-clean: distclean
156         @echo "This command is intended for maintainers to use;"
157         @echo "it deletes files that may require special tools to rebuild."
158         rm -f $(GMOFILES)
159
160 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
161 dist distdir:
162         $(MAKE) update-po
163         @$(MAKE) dist2
164 # This is a separate target because 'update-po' must be executed before.
165 dist2: $(DISTFILES)
166         dists="$(DISTFILES)"; \
167         for file in $$dists; do \
168           if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
169           cp -p $$dir/$$file $(distdir); \
170         done
171
172 update-po: Makefile
173         $(MAKE) $(PACKAGE).pot
174         if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \
175         cd $(srcdir); \
176         catalogs='$(GMOFILES)'; \
177         for cat in $$catalogs; do \
178           cat=`basename $$cat`; \
179           lang=`echo $$cat | sed 's/\.gmo$$//'`; \
180           echo "$$lang:"; \
181           if $(MSGMERGE) $$lang.po $(PACKAGE).pot -o $$lang.new.po; then \
182             mv -f $$lang.new.po $$lang.po; \
183           else \
184             echo "msgmerge for $$cat failed!"; \
185             rm -f $$lang.new.po; \
186           fi; \
187         done
188         $(MAKE) update-gmo
189
190 update-gmo: Makefile $(GMOFILES)
191         @:
192
193 Makefile: Makefile.in.in $(top_builddir)/config.status POTFILES.in
194         cd $(top_builddir) \
195           && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
196                $(SHELL) ./config.status
197
198 # Tell versions [3.59,3.63) of GNU make not to export all variables.
199 # Otherwise a system limit (for SysV at least) may be exceeded.
200 .NOEXPORT: