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>
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 # - 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 jwz to not suck wet farts from dead pigeons.
16 # This is truly one of the worst-written Makefiles I've ever seen.
17 # Problems I (tried to) fix:
19 # - MKINSTALLDIRS was $(top_srcdir)/@MKINSTALLDIRS@, but the
20 # configure script already put $(top_srcdir) into @MKINSTALLDIRS@,
21 # so the result was an absolute path that didn't work at all.
23 # - GMSGFMT and XGETTEXT set $PATH to some random value before
24 # running the program. That's completely stupid, and anyway,
25 # the hardcoded $PATH value they were using (../src) do not
26 # apply to xscreensaver.
28 # - the .po.gmo, .po.cat, .po.pox, .pot, install-data-yes, update-po, and
29 # uninstall rules didn't actually print the commands they were
30 # executing: they just dumped a bunch of sh code at you, and expected
31 # you to figure it out yourself. This is typical behavior of Makefile
32 # rules written by morons.
34 # - intltool-update prints a lot of useless crap to both stderr and
35 # stdout and has no command-line argument meaning "be quiet, and only
36 # print errors", so I just redirected the whole thing to /dev/null.
38 # - Demonstrating a total misunderstanding of build-directories and
39 # VPATH, the .po.gmo rule was writing output to $(srcdir). When
40 # the current directory is not $(srcdir), one *never* writes to
41 # $(srcdir) -- it is to be considered read-only.
43 # - Likewise, install-data-yes was looking for .gmo files in both the
44 # current directory, and in $(srcdir). In the case where those are
45 # not the same directory, there must be no .gmo files in $(srcdir).
47 # - The update-po rule was explicitly writing to $(srcdir). I changed
48 # it to just work in the current directory. As I understand it, it
49 # only makes sense to run this rule while in the srcdir, e.g., from
50 # distdepend -- so it should be allowed to error out when run in an
51 # inappropriate directory.
53 # - install-data-yes went through great code-duplication-contortions
54 # to cope with the file mentioned by MKINSTALLDIRS not actually
55 # existing! Instead of assuming that MKINSTALLDIRS will be set to
56 # an actual, correct value, it had a hardcoded check to look for it
57 # in $(top_srcdir) as well! WTF!
59 # - It turns out that "msgfmt" silently fails to write a .gmo file
60 # if the source .po file is empty (or otherwise not yet written.)
61 # The install-data-yes rule made no provision for this, and would
62 # just error out when the .gmo files were not there.
64 # - $(DESTDIR) was being used where $(install_prefix) should have been.
66 # - For xscreensaver, $(prefix) is generally /usr/X11R6/, but some files
67 # need to go under /usr/ instead of under /usr/X11R6/ -- for those, we
68 # use @PO_DATADIR@ instead of @prefix@. So I changed $(datadir) and
69 # $(gnulocaledir) appropriately.
71 # - WTF is $(gettextsrcdir) doing in here?
73 # - added "*.gmo *.pot" to "distclean".
75 # - I added a rule to po/POTFILES.in so that I wouldn't have to maintain
76 # that list of files in two places.
78 # - I removed the rule to auto-regenerate Makefile from Makefile.in.in
79 # because it made my top-level "make distdepend" rule fail: things
80 # were executing in the wrong order.
82 # - the .po.cat rule has a hardcoded "../intl/po2msg.sed" in it.
83 # Guess what, I don't have any such directory. And that should be
84 # refering to $(srcdir) anyway. So I just commented (my half-fixed
85 # version of) this rule out.
88 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
96 top_srcdir = @top_srcdir@
101 exec_prefix = @exec_prefix@
102 #datadir = $(prefix)/@DATADIRNAME@ -- not for xscreensaver
103 datadir = @PO_DATADIR@
104 datarootdir = @datarootdir@
105 localedir = $(datadir)/locale
106 #localedir = $(prefix)/share/locale
107 #gnulocaledir = $(prefix)/share/locale -- not for xscreensaver
108 gnulocaledir = $(localedir)
109 #gettextsrcdir = $(prefix)/share/glib-2.0/gettext/po
111 DESTDIR = $(install_prefix)
114 INSTALL_DATA = @INSTALL_DATA@
116 # #### NO. This gets me "..//usr/bin/install: No such file or directory".
117 # The @MKINSTALLDIRS@ variable must have the absolute (or unqualified)
118 # path of the install program. --jwz.
119 # MKINSTALLDIRS = $(top_builddir)/@MKINSTALLDIRS@
121 MKINSTALLDIRS = @MKINSTALLDIRS@
127 XGETTEXT = @XGETTEXT@
128 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
129 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
130 MSGMERGE = $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
131 GENPOT = $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
135 CPPFLAGS = @CPPFLAGS@
137 INCLUDES = -I.. -I$(top_srcdir)/intl
139 COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
143 GMOFILES = @GMOFILES@
144 DISTFILES_1 = ChangeLog Makefile.in.in POTFILES.in update.sh
145 DISTFILES = $(DISTFILES_1) $(GETTEXT_PACKAGE).pot \
146 $(POFILES) $(GMOFILES) $(SOURCES)
148 TARFILES = $(DISTFILES_1) $(POFILES) $(SOURCES)
152 CATALOGS = @CATALOGS@
153 CATOBJEXT = @CATOBJEXT@
154 INSTOBJEXT = @INSTOBJEXT@
157 .SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
163 $(MAKE) $(GETTEXT_PACKAGE).pot
164 INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) ; \
165 export INTLTOOL_EXTRACT ; \
166 echo $(MSGMERGE) $< $(srcdir)/$(GETTEXT_PACKAGE).pot -o $*.pox ; \
167 $(MSGMERGE) $< $(srcdir)/$(GETTEXT_PACKAGE).pot -o $*.pox
172 # jwz: the "-" means "ignore any errors here, because I don't give a shit."
174 @-file=`echo $* | sed 's,.*/,,'`.gmo ; \
176 echo $(GMSGFMT) -o "$$file" $< ; \
177 $(GMSGFMT) -o "$$file" $<
180 # @echo "sed -f ../intl/po2msg.sed < $< > $*.msg" ; \
181 # sed -f ../intl/po2msg.sed < $< > $*.msg && \
183 # echo $(GENCAT) "$@" "$*.msg" ; \
184 # $(GENCAT) "$@" "$*.msg"
193 $(GETTEXT_PACKAGE).pot: $(POTFILES)
194 @INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) ; \
195 export INTLTOOL_EXTRACT ; \
196 echo top_srcdir=$(top_srcdir) $(GENPOT) ; \
197 top_srcdir=$(top_srcdir) $(GENPOT)
199 install-strip: install
201 install: install-exec install-data
207 install-data: install-data-@USE_NLS@
209 install-data-yes: all
211 catalogs='$(CATALOGS)'; \
213 for cat in $$catalogs; do \
214 cat=`basename $$cat`; \
216 *.gmo) destdir=$(gnulocaledir);; \
217 *) destdir=$(localedir);; \
219 lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
220 dir=$(install_prefix)$$destdir/$$lang/LC_MESSAGES; \
221 dest=$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
222 if test -r $$cat -o -r $$cat.m; then \
223 echo $(MKINSTALLDIRS) $$dir; \
224 $(MKINSTALLDIRS) $$dir; \
226 losers="$$losers $$lang"; \
228 if test -r $$cat; then \
229 echo $(INSTALL_DATA) $$cat $$dest; \
230 $(INSTALL_DATA) $$cat $$dest; \
232 if test -r $$cat.m; then \
233 echo $(INSTALL_DATA) $$cat.m $$dest.m; \
234 $(INSTALL_DATA) $$cat.m $$dest.m; \
237 if [ "$$losers" != '' ]; then \
238 echo "Warning: these catalogs were not installed:" >&2 ; \
239 echo " $$losers" >&2; \
242 # Define this as empty until I found a useful application.
246 @catalogs='$(CATALOGS)'; \
247 for cat in $$catalogs; do \
248 cat=`basename $$cat`; \
249 lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
250 suffix="$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
251 for f in $(install_prefix)$(localedir)/$$suffix \
252 $(install_prefix)$(localedir)/$$suffix.m \
253 $(install_prefix)$(gnulocaledir)/$$suffix \
254 $(install_prefix)$(gnulocaledir)/$$suffix.m; do \
255 if [ -f $$f ]; then \
267 dvi info tags TAGS ID:
270 rm -f core core.* *.pox $(GETTEXT_PACKAGE).po *.old.po cat-id-tbl.tmp
276 rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m *.gmo *.pot
279 maintainer-clean: distclean
280 @echo "This command is intended for maintainers to use;"
281 @echo "it deletes files that may require special tools to rebuild."
285 distdepend: generate_potfiles_in update-po $(DISTFILES)
288 # jwz: Generates po/POTFILES.in by examining the source tree:
289 # that way we don't have to keep this list up to date as files are added.
291 generate_potfiles_in:
294 echo "sleeping 3 seconds..." ;\
296 ( cd $(top_srcdir); \
297 echo "# Auto-generated: `LANG=C date`" ; \
298 ( grep -l '_("' driver/*.[ch] ; \
300 driver/*.desktop.in \
301 hacks/config/*.xml ) | sort \
304 echo "created `pwd`/$$file"
309 distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
310 dist distdir: update-po $(DISTFILES)
311 dists="$(DISTFILES)"; \
312 for file in $$dists; do \
313 ln $(srcdir)/$$file $(distdir) 2> /dev/null \
314 || cp -p $(srcdir)/$$file $(distdir); \
318 $(MAKE) $(GETTEXT_PACKAGE).pot
319 @catalogs='$(CATALOGS)'; \
320 INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) ; \
321 export INTLTOOL_EXTRACT ; \
322 for cat in $$catalogs; do \
323 cat=`basename $$cat`; \
324 lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
325 if [ ! -f $$lang.po ] ; then \
326 cp $(srcdir)/$$lang.po . ; \
328 cp $$lang.po $$lang.old.po; \
329 echo $(MSGMERGE) $$lang; \
330 if $(MSGMERGE) $$lang >/dev/null 2>&1; then \
331 rm -f $$lang.old.po; \
333 echo "msgmerge for $$cat failed!"; \
335 mv $$lang.old.po $$lang.po; \
340 $(MAKE) $(PACKAGE).pot;
341 INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) ; \
342 export INTLTOOL_EXTRACT ; \
343 echo; printf "$*: "; \
344 if $(MSGMERGE) $*; then \
347 echo "msgmerge for * failed!"; \
348 mv $*.old.po $*.po; \
350 msgfmt --statistics $*.po; echo;
353 # POTFILES is created from POTFILES.in by stripping comments, empty lines
354 # and Intltool tags (enclosed in square brackets), and appending a full
355 # relative path to them
356 POTFILES: POTFILES.in
357 ( if test 'x$(srcdir)' != 'x.'; then \
358 posrcprefix='$(top_srcdir)/'; \
366 -e "s@.*@ $$posrcprefix& \\\\@" < $@.in \
367 | sed -e '$$s/\\$$//') > $@-t \
372 @if test ! -f $@; then \
377 stamp-it: Makefile.in.in ../config.status POTFILES
379 && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= \
380 $(SHELL) ./config.status
382 # Tell versions [3.59,3.63) of GNU make not to export all variables.
383 # Otherwise a system limit (for SysV at least) may be exceeded.