diff options
author | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-22 23:53:59 +0000 |
---|---|---|
committer | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-22 23:53:59 +0000 |
commit | 986086aaf32dbfc0d41ad004bdb9063c9f46eb8d (patch) | |
tree | 1591f8f1fd2ecee0b66f132b65126799ed3a78a1 /intl/Makefile.in | |
parent | ad8f53f5646a96ecddded02ba24722d39bd479c0 (diff) | |
download | gcc-986086aaf32dbfc0d41ad004bdb9063c9f46eb8d.tar.gz |
config/
2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
* gettext-sister.m4: Renamed from gettext.m4
* codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4, po.m4,
inttypes.m4, inttypes-pri.m4, inttypes_h.m4, lcmessage.m4, lib-ld.m4,
lib-link.m4, lib-prefix.m4, nls.m4, progtest.m4, stdint_h.m4,
uintmax_t.m4, ulonglong.m4: Import from gettext-0.12.1 sources.
gcc/
2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
* aclocal.m4: Update for rename of gettext-sister.m4.
libcpp/
2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
* Makefile.in (aclocal.m4): Update dependencies.
* configure.ac (AC_CONFIG_MACRO_DIR): New.
* aclocal.m4, configure: Regenerate.
intl/
2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
* configure.ac (AC_CONFIG_MACRO_DIR): New.
(ACLOCAL, AUTOCONF, AUTOHEADER, MAINT): Substitute.
* Makefile.in: Update with maintainer mode rules.
* README: Update aclocal regeneration instructions.
* aclocal.m4, configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87900 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'intl/Makefile.in')
-rw-r--r-- | intl/Makefile.in | 54 |
1 files changed, 39 insertions, 15 deletions
diff --git a/intl/Makefile.in b/intl/Makefile.in index b9edebd3f9d..9f8d9e614fb 100644 --- a/intl/Makefile.in +++ b/intl/Makefile.in @@ -21,10 +21,7 @@ # we do not need nor want), the ability to build a shared library # (likewise), and a large number of heinous kludges. -PACKAGE = @PACKAGE@ -VERSION = @VERSION@ - -SHELL = /bin/sh +SHELL = @SHELL@ srcdir = @srcdir@ VPATH = $(srcdir) @@ -39,6 +36,9 @@ localedir = $(datadir)/locale aliaspath = $(localedir) AR = ar +ACLOCAL = @ACLOCAL@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ CC = @CC@ RANLIB = @RANLIB@ YACC = @INTLBISON@ -y -d @@ -191,19 +191,43 @@ maintainer-clean: distclean dist: distdir: -Makefile: Makefile.in config.status - CONFIG_HEADERS= CONFIG_FILES=Makefile $(SHELL) ./config.status - -config.intl: config.intl.in config.status - CONFIG_HEADERS= CONFIG_FILES=config.intl $(SHELL) ./config.status +# Rules to rebuild the configuration -config.h: cstamp-h; @: -cstamp-h: config.h.in config.status - CONFIG_HEADERS=config.h CONFIG_FILES= $(SHELL) config.status - echo timestamp > cstamp-h +Makefile: $(srcdir)/Makefile.in config.status + $(SHELL) ./config.status Makefile -config.status: configure - $(SHELL) config.status --recheck +config.intl: config.intl.in config.status + $(SHELL) ./config.status config.intl + +config.status: $(srcdir)/configure + $(SHELL) ./config.status --recheck + +$(srcdir)/configure: @MAINT@ $(srcdir)/aclocal.m4 $(srcdir)/configure.ac + cd $(srcdir) && $(AUTOCONF) + +$(srcdir)/aclocal.m4: @MAINT@ $(srcdir)/configure.ac \ + $(srcdir)/../config/codeset.m4 $(srcdir)/../config/gettext.m4 \ + $(srcdir)/../config/glibc21.m4 $(srcdir)/../config/iconv.m4 \ + $(srcdir)/../config/intdiv0.m4 $(srcdir)/../config/inttypes-pri.m4 \ + $(srcdir)/../config/inttypes.m4 $(srcdir)/../config/inttypes_h.m4 \ + $(srcdir)/../config/lcmessage.m4 $(srcdir)/../config/lib-ld.m4 \ + $(srcdir)/../config/lib-link.m4 $(srcdir)/../config/lib-prefix.m4 \ + $(srcdir)/../config/nls.m4 $(srcdir)/../config/po.m4 \ + $(srcdir)/../config/progtest.m4 $(srcdir)/../config/stdint_h.m4 \ + $(srcdir)/../config/uintmax_t.m4 $(srcdir)/../config/ulonglong.m4 + cd $(srcdir) && $(ACLOCAL) -I ../config + +config.h: stamp-h1 + test -f config.h || (rm -f stamp-h1 && $(MAKE) stamp-h1) + +stamp-h1: $(srcdir)/config.in config.status + -rm -f stamp-h1 + $(SHELL) ./config.status config.h + +$(srcdir)/config.in: @MAINT@ $(srcdir)/configure + cd $(srcdir) && $(AUTOHEADER) + -rm -f stamp-h1 + # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. |