]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Add autoheader counterpart to autoconf-common et.al.
authorAndrew Cagney <cagney@redhat.com>
Thu, 3 Apr 1997 02:22:52 +0000 (02:22 +0000)
committerAndrew Cagney <cagney@redhat.com>
Thu, 3 Apr 1997 02:22:52 +0000 (02:22 +0000)
sim/ChangeLog
sim/Makefile.in
sim/README-HACKING

index 014ef6ddc39c86e9276cffdeedd8e52653a171a4..92f0b19376e5e6dc717ad24d712b8f712cb29db4 100644 (file)
@@ -1,3 +1,8 @@
+Thu Apr  3 12:20:32 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
+
+       * Makefile.in (autoheader-common, autoheader-changelog,
+       autoheader-install): Perform autoheader in addition to autoconf.
+
 Wed Apr  2 15:09:05 1997  Doug Evans  <dje@canuck.cygnus.com>
 
        * Makefile.in (autoconf-install): New target.
index 92fd900a38044397bdf6fcae90732d8eedacebe5..7c9308ec826a3b98f7e7b6f4576721edf94afeb9 100644 (file)
@@ -196,7 +196,7 @@ config.status: configure
 # This is intended to be invoked in $srcdir as
 # "make -f Makefile.in autoconf-common".
 .PHONY: autoconf-common
-autoconf-common:
+autoconf-common autoheader-common:
        for d in * ; \
        do \
            if [ -d $$d -a -f $$d/configure.in ] ; \
@@ -205,11 +205,16 @@ autoconf-common:
                then \
                    echo "Running autoconf in $$d ..." ; \
                    (cd $$d && autoconf) ; \
+                   if [ $* = autoheader-common ] ; \
+                   then \
+                     echo "Running autoheader in $$d ..." ; \
+                     (cd $$d && autoheader) ; \
+                   fi ; \
                fi ; \
            fi ; \
        done
 
-autoconf-changelog:
+autoconf-changelog autoheader-changelog:
        id="`id | sed -e 's/^[^(]*(\([^)]*\).*$$/\1/'`" ; \
        name=`grep "^$$id:" /etc/passwd | cut -f 5 -d ':'` ; \
        host="`hostname`" ; \
@@ -225,6 +230,10 @@ autoconf-changelog:
                    ( echo "$$date  $$name  <$$id@$$host>" ; \
                      echo "" ; \
                      echo "    * configure: Regenerated to track ../common/aclocal.m4 changes." ; \
+                     if [ $* = autoheader-changelog ] ; \
+                     then \
+                       echo "  * config.in: Ditto." ; \
+                     fi ; \
                      echo "" ; \
                      cat $$d/ChangeLog \
                    ) > $$d/new-ChangeLog ; \
@@ -232,7 +241,7 @@ autoconf-changelog:
            fi ; \
        done
 
-autoconf-install:
+autoconf-install autoheader-install:
        for d in * ; \
        do \
            if [ -d $$d -a -f $$d/configure.in ] ; \
index 48df341f4d9c2f61fae217b0012b0280ead5a7fa..cc11d7905569b780043936bf7ebdb4c51a66f40e 100644 (file)
@@ -122,5 +122,12 @@ renaming):
        $  more */new-ChangeLog
        $  make -f Makefile.in autoconf-install
 
+In a similar vein, both the configure and config.in files can be
+updated using the sequence:
+
+       $  cd devo/sim
+       $  make -f Makefile.in autoheader-common
+       $  make -f Makefile.in autoheader-changelog
+       $  more */new-ChangeLog
+       $  make -f Makefile.in autoheader-install
 
-\f