Makefile.in revision 65f0aab98b20b5994a726ab90d355248bcddfffd
1# Makefile for directory with message catalog handling library of GNU gettext
2# Copyright (C) 1995-1998, 2000-2003 Free Software Foundation, Inc.
3#
4# This program is free software; you can redistribute it and/or modify it
5# under the terms of the GNU Library General Public License as published
6# by the Free Software Foundation; either version 2, or (at your option)
7# any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12# Library General Public License for more details.
13#
14# You should have received a copy of the GNU Library General Public
15# License along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17# USA.
18
19PACKAGE = @PACKAGE@
20VERSION = @VERSION@
21
22SHELL = /bin/sh
23
24srcdir = @srcdir@
25top_srcdir = @top_srcdir@
26top_builddir = ..
27VPATH = $(srcdir)
28
29prefix = @prefix@
30exec_prefix = @exec_prefix@
31datarootdir = @datarootdir@
32transform = @program_transform_name@
33libdir = @libdir@
34includedir = @includedir@
35datadir = @datadir@
36localedir = $(datadir)/locale
37gettextsrcdir = $(datadir)/gettext/intl
38aliaspath = $(localedir)
39subdir = intl
40
41INSTALL = @INSTALL@
42INSTALL_DATA = @INSTALL_DATA@
43MKINSTALLDIRS = @MKINSTALLDIRS@
44mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
45
46@SET_MAKE@
47
48@ifGNUmake@ V =
49@ifGNUmake@ ifeq ($(strip $(V)),)
50@ifGNUmake@ #  E = @echo
51@ifGNUmake@ #  Q = @
52@ifGNUmake@    E = @E@
53@ifGNUmake@    Q = @Q@
54@ifGNUmake@ else
55@ifGNUmake@    E = @\#
56@ifGNUmake@    Q =
57@ifGNUmake@ endif
58
59@ifNotGNUmake@ E = @E@
60@ifNotGNUmake@ Q = @Q@
61
62l = @INTL_LIBTOOL_SUFFIX_PREFIX@
63
64AR = ar
65CC = @CC@
66LIBTOOL = @LIBTOOL@
67RANLIB = @RANLIB@
68YACC = @INTLBISON@ -y -d
69YFLAGS = --name-prefix=__gettext
70
71DEFS = -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \
72-DLIBDIR=\"$(libdir)\" -DIN_LIBINTL \
73-DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"$(libdir)\" -DNO_XMALLOC \
74-Dset_relocation_prefix=libintl_set_relocation_prefix \
75-Drelocate=libintl_relocate \
76-DDEPENDS_ON_LIBICONV=1 @DEFS@
77CPPFLAGS = @CPPFLAGS@
78CFLAGS = @CFLAGS@
79LDFLAGS = @LDFLAGS@
80LIBS = @LIBS@
81
82COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
83
84HEADERS = \
85  gmo.h \
86  gettextP.h \
87  hash-string.h \
88  loadinfo.h \
89  plural-exp.h \
90  eval-plural.h \
91  localcharset.h \
92  relocatable.h \
93  xsize.h \
94  printf-args.h printf-args.c \
95  printf-parse.h wprintf-parse.h printf-parse.c \
96  vasnprintf.h vasnwprintf.h vasnprintf.c \
97  os2compat.h \
98  libgnuintl.h.in
99SOURCES = \
100  bindtextdom.c \
101  dcgettext.c \
102  dgettext.c \
103  gettext.c \
104  finddomain.c \
105  loadmsgcat.c \
106  localealias.c \
107  textdomain.c \
108  l10nflist.c \
109  explodename.c \
110  dcigettext.c \
111  dcngettext.c \
112  dngettext.c \
113  ngettext.c \
114  plural.y \
115  plural-exp.c \
116  localcharset.c \
117  relocatable.c \
118  localename.c \
119  log.c \
120  printf.c \
121  osdep.c \
122  os2compat.c \
123  intl-compat.c
124OBJECTS = \
125  bindtextdom.$lo \
126  dcgettext.$lo \
127  dgettext.$lo \
128  gettext.$lo \
129  finddomain.$lo \
130  loadmsgcat.$lo \
131  localealias.$lo \
132  textdomain.$lo \
133  l10nflist.$lo \
134  explodename.$lo \
135  dcigettext.$lo \
136  dcngettext.$lo \
137  dngettext.$lo \
138  ngettext.$lo \
139  plural.$lo \
140  plural-exp.$lo \
141  localcharset.$lo \
142  relocatable.$lo \
143  localename.$lo \
144  log.$lo \
145  printf.$lo \
146  osdep.$lo \
147  intl-compat.$lo
148DISTFILES.common = Makefile.in \
149config.charset locale.alias ref-add.sin ref-del.sin $(HEADERS) $(SOURCES)
150DISTFILES.generated = plural.c
151DISTFILES.normal = VERSION
152DISTFILES.gettext = COPYING.LIB-2.0 COPYING.LIB-2.1 libintl.glibc \
153libgnuintl.h_vms Makefile.vms \
154libgnuintl.h.msvc-static libgnuintl.h.msvc-shared README.woe32 Makefile.msvc
155DISTFILES.obsolete = xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c \
156COPYING.LIB-2 gettext.h libgettext.h plural-eval.c libgnuintl.h
157
158all: all-@USE_INCLUDED_LIBINTL@
159all-yes: libintl.$la libintl.h charset.alias ref-add.sed ref-del.sed
160all-no: all-no-@BUILD_INCLUDED_LIBINTL@
161all-no-yes: libgnuintl.$la
162all-no-no:
163
164libintl.a libgnuintl.a: $(OBJECTS)
165	$(Q) rm -f $@
166	$(E) "	AR $@"
167	$(Q) $(AR) cru $@ $(OBJECTS)
168	$(E) "	RANLIB $@"
169	$(Q) $(RANLIB) $@
170
171libintl.la libgnuintl.la: $(OBJECTS)
172	$(LIBTOOL) --mode=link \
173	  $(CC) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) $(LDFLAGS) -o $@ \
174	  $(OBJECTS) @LTLIBICONV@ $(LIBS) -lc \
175	  -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \
176	  -rpath $(libdir) \
177	  -no-undefined
178
179# Libtool's library version information for libintl.
180# Before making a gettext release, the gettext maintainer must change this
181# according to the libtool documentation, section "Library interface versions".
182# Maintainers of other packages that include the intl directory must *not*
183# change these values.
184LTV_CURRENT=7
185LTV_REVISION=0
186LTV_AGE=4
187
188.SUFFIXES:
189.SUFFIXES: .c .y .o .lo .sin .sed
190
191.c.o:
192	$(E) "	CC $<"
193	$(Q) $(COMPILE) $<
194
195.y.c:
196	$(YACC) $(YFLAGS) --output $@ $<
197	rm -f $*.h
198
199bindtextdom.lo: $(srcdir)/bindtextdom.c
200	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/bindtextdom.c
201dcgettext.lo: $(srcdir)/dcgettext.c
202	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dcgettext.c
203dgettext.lo: $(srcdir)/dgettext.c
204	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dgettext.c
205gettext.lo: $(srcdir)/gettext.c
206	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/gettext.c
207finddomain.lo: $(srcdir)/finddomain.c
208	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/finddomain.c
209loadmsgcat.lo: $(srcdir)/loadmsgcat.c
210	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/loadmsgcat.c
211localealias.lo: $(srcdir)/localealias.c
212	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/localealias.c
213textdomain.lo: $(srcdir)/textdomain.c
214	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/textdomain.c
215l10nflist.lo: $(srcdir)/l10nflist.c
216	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/l10nflist.c
217explodename.lo: $(srcdir)/explodename.c
218	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/explodename.c
219dcigettext.lo: $(srcdir)/dcigettext.c
220	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dcigettext.c
221dcngettext.lo: $(srcdir)/dcngettext.c
222	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dcngettext.c
223dngettext.lo: $(srcdir)/dngettext.c
224	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dngettext.c
225ngettext.lo: $(srcdir)/ngettext.c
226	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/ngettext.c
227plural.lo: $(srcdir)/plural.c
228	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/plural.c
229plural-exp.lo: $(srcdir)/plural-exp.c
230	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/plural-exp.c
231localcharset.lo: $(srcdir)/localcharset.c
232	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/localcharset.c
233relocatable.lo: $(srcdir)/relocatable.c
234	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/relocatable.c
235localename.lo: $(srcdir)/localename.c
236	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/localename.c
237log.lo: $(srcdir)/log.c
238	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/log.c
239printf.lo: $(srcdir)/printf.c
240	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/printf.c
241osdep.lo: $(srcdir)/osdep.c
242	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/osdep.c
243intl-compat.lo: $(srcdir)/intl-compat.c
244	$(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/intl-compat.c
245
246ref-add.sed: $(srcdir)/ref-add.sin
247	$(E) "	SED ref-add.sed"
248	$(Q) sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-add.sin > t-ref-add.sed
249	$(Q) mv t-ref-add.sed ref-add.sed
250ref-del.sed: $(srcdir)/ref-del.sin
251	$(E) "	SED ref-del.sed"
252	$(Q) sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-del.sin > t-ref-del.sed
253	$(Q) mv t-ref-del.sed ref-del.sed
254
255INCLUDES = -I. -I$(srcdir) -I..
256
257libgnuintl.h: $(srcdir)/libgnuintl.h.in
258	$(E) "	SED libgnuintl.h "
259	$(Q) sed -e 's,@''HAVE_POSIX_PRINTF''@,@HAVE_POSIX_PRINTF@,g' \
260	    -e 's,@''HAVE_ASPRINTF''@,@HAVE_ASPRINTF@,g' \
261	    -e 's,@''HAVE_SNPRINTF''@,@HAVE_SNPRINTF@,g' \
262	    -e 's,@''HAVE_WPRINTF''@,@HAVE_WPRINTF@,g' \
263	  < $(srcdir)/libgnuintl.h.in > libgnuintl.h 
264
265libintl.h: libgnuintl.h
266	$(E) "	CP libintl.h"
267	$(Q) cp libgnuintl.h libintl.h
268
269charset.alias: $(srcdir)/config.charset
270	$(E) "	CONFIG.CHARSET $@"
271	$(Q) $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
272	$(Q) mv t-$@ $@
273
274check: all
275
276# We must not install the libintl.h/libintl.a files if we are on a
277# system which has the GNU gettext() function in its C library or in a
278# separate library.
279# If you want to use the one which comes with this version of the
280# package, you have to use `configure --with-included-gettext'.
281install: install-exec install-data
282install-exec: all
283	$(Q) if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \
284	   && test '@USE_INCLUDED_LIBINTL@' = yes; then \
285	  $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \
286	  $(INSTALL_DATA) libintl.h $(DESTDIR)$(includedir)/libintl.h; \
287	  $(LIBTOOL) --mode=install \
288	    $(INSTALL_DATA) libintl.$la $(DESTDIR)$(libdir)/libintl.$la; \
289	  if test "@RELOCATABLE@" = yes; then \
290	    dependencies=`sed -n -e 's,^dependency_libs=\(.*\),\1,p' < $(DESTDIR)$(libdir)/libintl.la | sed -e "s,^',," -e "s,'\$$,,"`; \
291	    if test -n "$$dependencies"; then \
292	      rm -f $(DESTDIR)$(libdir)/libintl.la; \
293	    fi; \
294	  fi; \
295	else \
296	  : ; \
297	fi
298	$(Q) if test "$(PACKAGE)" = "gettext-tools" \
299	   && test '@USE_INCLUDED_LIBINTL@' = no; then \
300	  $(mkinstalldirs) $(DESTDIR)$(libdir); \
301	  $(LIBTOOL) --mode=install \
302	    $(INSTALL_DATA) libgnuintl.$la $(DESTDIR)$(libdir)/libgnuintl.$la; \
303	  rm -f $(DESTDIR)$(libdir)/preloadable_libintl.so; \
304	  $(INSTALL_DATA) $(DESTDIR)$(libdir)/libgnuintl.so $(DESTDIR)$(libdir)/preloadable_libintl.so; \
305	  $(LIBTOOL) --mode=uninstall \
306	    rm -f $(DESTDIR)$(libdir)/libgnuintl.$la; \
307	else \
308	  : ; \
309	fi
310	if test '@USE_INCLUDED_LIBINTL@' = yes; then \
311	  test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \
312	  temp=$(DESTDIR)$(libdir)/t-charset.alias; \
313	  dest=$(DESTDIR)$(libdir)/charset.alias; \
314	  if test -f $(DESTDIR)$(libdir)/charset.alias; then \
315	    orig=$(DESTDIR)$(libdir)/charset.alias; \
316	    sed -f ref-add.sed $$orig > $$temp; \
317	    $(INSTALL_DATA) $$temp $$dest; \
318	    rm -f $$temp; \
319	  else \
320	    if test @GLIBC21@ = no; then \
321	      orig=charset.alias; \
322	      sed -f ref-add.sed $$orig > $$temp; \
323	      $(INSTALL_DATA) $$temp $$dest; \
324	      rm -f $$temp; \
325	    fi; \
326	  fi; \
327	  $(mkinstalldirs) $(DESTDIR)$(localedir); \
328	  test -f $(DESTDIR)$(localedir)/locale.alias \
329	    && orig=$(DESTDIR)$(localedir)/locale.alias \
330	    || orig=$(srcdir)/locale.alias; \
331	  temp=$(DESTDIR)$(localedir)/t-locale.alias; \
332	  dest=$(DESTDIR)$(localedir)/locale.alias; \
333	  sed -f ref-add.sed $$orig > $$temp; \
334	  $(INSTALL_DATA) $$temp $$dest; \
335	  rm -f $$temp; \
336	else \
337	  : ; \
338	fi
339install-data: all
340	$(Q) if test "$(PACKAGE)" = "gettext-tools"; then \
341	  $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
342	  $(INSTALL_DATA) VERSION $(DESTDIR)$(gettextsrcdir)/VERSION; \
343	  $(INSTALL_DATA) ChangeLog.inst $(DESTDIR)$(gettextsrcdir)/ChangeLog; \
344	  dists="COPYING.LIB-2.0 COPYING.LIB-2.1 $(DISTFILES.common)"; \
345	  for file in $$dists; do \
346	    $(INSTALL_DATA) $(srcdir)/$$file \
347			    $(DESTDIR)$(gettextsrcdir)/$$file; \
348	  done; \
349	  chmod a+x $(DESTDIR)$(gettextsrcdir)/config.charset; \
350	  dists="$(DISTFILES.generated)"; \
351	  for file in $$dists; do \
352	    if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
353	    $(INSTALL_DATA) $$dir/$$file \
354			    $(DESTDIR)$(gettextsrcdir)/$$file; \
355	  done; \
356	  dists="$(DISTFILES.obsolete)"; \
357	  for file in $$dists; do \
358	    rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
359	  done; \
360	else \
361	  : ; \
362	fi
363
364install-strip: install
365
366installdirs:
367	if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \
368	   && test '@USE_INCLUDED_LIBINTL@' = yes; then \
369	  $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \
370	else \
371	  : ; \
372	fi
373	if test "$(PACKAGE)" = "gettext-tools" \
374	   && test '@USE_INCLUDED_LIBINTL@' = no; then \
375	  $(mkinstalldirs) $(DESTDIR)$(libdir); \
376	else \
377	  : ; \
378	fi
379	if test '@USE_INCLUDED_LIBINTL@' = yes; then \
380	  test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \
381	  $(mkinstalldirs) $(DESTDIR)$(localedir); \
382	else \
383	  : ; \
384	fi
385	if test "$(PACKAGE)" = "gettext-tools"; then \
386	  $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
387	else \
388	  : ; \
389	fi
390
391# Define this as empty until I found a useful application.
392installcheck:
393
394install-shlibs:
395
396uninstall-shlibs:
397
398install-shlibs-strip:
399
400uninstall:
401	if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \
402	   && test '@USE_INCLUDED_LIBINTL@' = yes; then \
403	  rm -f $(DESTDIR)$(includedir)/libintl.h; \
404	  $(LIBTOOL) --mode=uninstall \
405	    rm -f $(DESTDIR)$(libdir)/libintl.$la; \
406	else \
407	  : ; \
408	fi
409	if test "$(PACKAGE)" = "gettext-tools" \
410	   && test '@USE_INCLUDED_LIBINTL@' = no; then \
411	  rm -f $(DESTDIR)$(libdir)/preloadable_libintl.so; \
412	else \
413	  : ; \
414	fi
415	if test '@USE_INCLUDED_LIBINTL@' = yes; then \
416	  if test -f $(DESTDIR)$(libdir)/charset.alias; then \
417	    temp=$(DESTDIR)$(libdir)/t-charset.alias; \
418	    dest=$(DESTDIR)$(libdir)/charset.alias; \
419	    sed -f ref-del.sed $$dest > $$temp; \
420	    if grep '^# Packages using this file: $$' $$temp > /dev/null; then \
421	      rm -f $$dest; \
422	    else \
423	      $(INSTALL_DATA) $$temp $$dest; \
424	    fi; \
425	    rm -f $$temp; \
426	  fi; \
427	  if test -f $(DESTDIR)$(localedir)/locale.alias; then \
428	    temp=$(DESTDIR)$(localedir)/t-locale.alias; \
429	    dest=$(DESTDIR)$(localedir)/locale.alias; \
430	    sed -f ref-del.sed $$dest > $$temp; \
431	    if grep '^# Packages using this file: $$' $$temp > /dev/null; then \
432	      rm -f $$dest; \
433	    else \
434	      $(INSTALL_DATA) $$temp $$dest; \
435	    fi; \
436	    rm -f $$temp; \
437	  fi; \
438	else \
439	  : ; \
440	fi
441	if test "$(PACKAGE)" = "gettext-tools"; then \
442	  for file in VERSION ChangeLog COPYING.LIB-2.0 COPYING.LIB-2.1 $(DISTFILES.common) $(DISTFILES.generated); do \
443	    rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
444	  done; \
445	else \
446	  : ; \
447	fi
448
449info dvi ps pdf html:
450
451$(OBJECTS): libgnuintl.h
452bindtextdom.$lo dcgettext.$lo dcigettext.$lo dcngettext.$lo dgettext.$lo dngettext.$lo finddomain.$lo gettext.$lo intl-compat.$lo loadmsgcat.$lo localealias.$lo ngettext.$lo textdomain.$lo: $(srcdir)/gettextP.h $(srcdir)/gmo.h $(srcdir)/loadinfo.h
453dcigettext.$lo loadmsgcat.$lo: $(srcdir)/hash-string.h
454explodename.$lo l10nflist.$lo: $(srcdir)/loadinfo.h
455dcigettext.$lo loadmsgcat.$lo plural.$lo plural-exp.$lo: $(srcdir)/plural-exp.h
456dcigettext.$lo: $(srcdir)/eval-plural.h
457localcharset.$lo: $(srcdir)/localcharset.h
458localealias.$lo localcharset.$lo relocatable.$lo: $(srcdir)/relocatable.h
459printf.$lo: $(srcdir)/printf-args.h $(srcdir)/printf-args.c $(srcdir)/printf-parse.h $(srcdir)/wprintf-parse.h $(srcdir)/xsize.h $(srcdir)/printf-parse.c $(srcdir)/vasnprintf.h $(srcdir)/vasnwprintf.h $(srcdir)/vasnprintf.c
460
461tags: TAGS
462
463TAGS: $(HEADERS) $(SOURCES)
464	here=`pwd`; cd $(srcdir) && etags -o $$here/TAGS $(HEADERS) $(SOURCES)
465
466ctags: CTAGS
467
468CTAGS: $(HEADERS) $(SOURCES)
469	here=`pwd`; cd $(srcdir) && ctags -o $$here/CTAGS $(HEADERS) $(SOURCES)
470
471id: ID
472
473ID: $(HEADERS) $(SOURCES)
474	here=`pwd`; cd $(srcdir) && mkid -f$$here/ID $(HEADERS) $(SOURCES)
475
476
477mostlyclean:
478	rm -f *.a *.la *.o *.obj *.lo core core.*
479	rm -f libgnuintl.h libintl.h charset.alias ref-add.sed ref-del.sed
480	rm -f -r .libs _libs
481
482clean: mostlyclean
483
484distclean: clean
485	rm -f Makefile ID TAGS
486	if test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; then \
487	  rm -f ChangeLog.inst $(DISTFILES.normal); \
488	else \
489	  : ; \
490	fi
491
492maintainer-clean: distclean
493	$(E) "This command is intended for maintainers to use;"
494	$(E) "it deletes files that may require special tools to rebuild."
495
496
497# GNU gettext needs not contain the file `VERSION' but contains some
498# other files which should not be distributed in other packages.
499distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
500dist distdir: Makefile
501	if test "$(PACKAGE)" = "gettext-tools"; then \
502	  : ; \
503	else \
504	  if test "$(PACKAGE)" = "gettext-runtime"; then \
505	    additional="$(DISTFILES.gettext)"; \
506	  else \
507	    additional="$(DISTFILES.normal)"; \
508	  fi; \
509	  $(MAKE) $(DISTFILES.common) $(DISTFILES.generated) $$additional; \
510	  for file in ChangeLog $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \
511	    if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
512	    cp -p $$dir/$$file $(distdir); \
513	  done; \
514	fi
515
516Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
517#	cd $(top_builddir) && $(SHELL) ./config.status
518# This would be more efficient, but doesn't work any more with autoconf-2.57,
519# when AC_CONFIG_FILES([intl/Makefile:somedir/Makefile.in]) is used.
520	cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
521
522# Tell versions [3.59,3.63) of GNU make not to export all variables.
523# Otherwise a system limit (for SysV at least) may be exceeded.
524.NOEXPORT:
525