diff options
| author | Andreas Jaeger <aj@suse.de> | 2001-05-17 10:47:10 +0200 |
|---|---|---|
| committer | Andreas Jaeger <aj@gcc.gnu.org> | 2001-05-17 10:47:10 +0200 |
| commit | 0314a6ce8ba2b844056660c66d8cb6149faf1419 (patch) | |
| tree | 533bda898513271490d08eee78a2a3880cb715a5 | |
| parent | 2b30401c300b02cf70225f7bd7b9c1c7e50f5e54 (diff) | |
| download | gcc-0314a6ce8ba2b844056660c66d8cb6149faf1419.zip gcc-0314a6ce8ba2b844056660c66d8cb6149faf1419.tar.gz gcc-0314a6ce8ba2b844056660c66d8cb6149faf1419.tar.bz2 | |
Makefile.in: Add rules to rebuild config.h.in when needed.
* libI77/Makefile.in: Add rules to rebuild config.h.in when
needed.
From-SVN: r42191
| -rw-r--r-- | libf2c/ChangeLog | 5 | ||||
| -rw-r--r-- | libf2c/libI77/Makefile.in | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/libf2c/ChangeLog b/libf2c/ChangeLog index 5bc4665..5e684aa 100644 --- a/libf2c/ChangeLog +++ b/libf2c/ChangeLog @@ -1,3 +1,8 @@ +2001-05-17 Andreas Jaeger <aj@suse.de> + + * libI77/Makefile.in: Add rules to rebuild config.h.in when + needed. + 2001-05-16 Andreas Jaeger <aj@suse.de> * libI77/backspace.c: Include "config.h". diff --git a/libf2c/libI77/Makefile.in b/libf2c/libI77/Makefile.in index 397474c..01902f0 100644 --- a/libf2c/libI77/Makefile.in +++ b/libf2c/libI77/Makefile.in @@ -81,6 +81,17 @@ ${srcdir}/configure: configure.in rm -f config.cache cd ${srcdir} && autoconf +# autoheader might not change config.h.in, so touch a stamp file. +${srcdir}/config.h.in: stamp-h.in +${srcdir}/stamp-h.in: configure.in + (cd ${srcdir} && autoheader) + @rm -f ${srcdir}/stamp-h.in + echo timestamp > ${srcdir}/stamp-h.in + +config.h: stamp-h; @true +stamp-h: config.h.in config.status + $(SHELL) config.status + VersionI.o: Version.c $(CC) -c $(ALL_CFLAGS) -o $@ $(srcdir)/Version.c |
