* Makefile.in (autoconf-install): New target.

This commit is contained in:
David Edelsohn 1997-04-02 23:10:34 +00:00
parent ba254dc504
commit b04500b2c4
3 changed files with 24 additions and 5 deletions

View file

@ -1,6 +1,10 @@
Wed Apr 2 15:09:05 1997 Doug Evans <dje@canuck.cygnus.com>
* Makefile.in (autoconf-install): New target.
Wed Apr 2 14:25:52 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
* Makefile.in (autoconf-common-changelog): New target, update
* Makefile.in (autoconf-changelog): New target, update
ChangeLog for all subdirectories - normally used after
autoconf-common target.

View file

@ -210,9 +210,11 @@ autoconf-common:
done
autoconf-changelog:
user="`finger $$USER | sed -n 's/^.*Name: //p'` <$$USER@`hostname`>" ; \
id="`id | sed -e 's/^[^(]*(\([^)]*\).*$$/\1/'`" ; \
name=`grep "^$$id:" /etc/passwd | cut -f 5 -d ':'` ; \
host="`hostname`" ; \
date="`date | sed 's/ [^ ]* \([0-9]*\)$$/ \1/'`" ; \
echo "$$date $$user" ; \
echo "$$date $$name $$id@$$host" ; \
for d in * ; \
do \
if [ -d $$d -a -f $$d/configure.in ] ; \
@ -220,7 +222,7 @@ autoconf-changelog:
if grep SIM_AC_COMMON $$d/configure.in >/dev/null ; \
then \
echo "Creating new-ChangeLog in $$d ..." ; \
( echo "$$date $$user" ; \
( echo "$$date $$name <$$id@$$host>" ; \
echo "" ; \
echo " * configure: Regenerated to track ../common/aclocal.m4 changes." ; \
echo "" ; \
@ -229,3 +231,16 @@ autoconf-changelog:
fi ; \
fi ; \
done
autoconf-install:
for d in * ; \
do \
if [ -d $$d -a -f $$d/configure.in ] ; \
then \
if grep SIM_AC_COMMON $$d/configure.in >/dev/null ; \
then \
echo "Moving $$d/new-ChangeLog to $$d/ChangeLog ..." ; \
mv $$d/new-ChangeLog $$d/ChangeLog ; \
fi ; \
fi ; \
done

View file

@ -120,7 +120,7 @@ renaming):
$ make -f Makefile.in autoconf-changelog
$ more */new-ChangeLog
$ for f in */new-ChangeLog ; do echo $f ; mv $f `dirname $f`/ChangeLog ; done
$ make -f Makefile.in autoconf-install