From: Jeffrey A Law Date: Fri, 5 Sep 1997 06:16:30 +0000 (+0000) Subject: Makefile.in (clean): Don't remove config.cache. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af818dc87c770d1aa7d46026fba1fa0923b88970;p=gcc.git Makefile.in (clean): Don't remove config.cache. * Makefile.in (clean): Don't remove config.cache. (distclean): Do it here instead. From-SVN: r15097 --- diff --git a/gcc/f/runtime/ChangeLog.egcs b/gcc/f/runtime/ChangeLog.egcs index c59d803b98f..a1170b2aeff 100644 --- a/gcc/f/runtime/ChangeLog.egcs +++ b/gcc/f/runtime/ChangeLog.egcs @@ -1,3 +1,8 @@ +Fri Sep 5 00:18:17 1997 Jeffrey A Law (law@cygnus.com) + + * Makefile.in (clean): Don't remove config.cache. + (distclean): Do it here instead. + Tue Aug 26 20:14:08 1997 Robert Lipe (robertl@dgii.com) * hostnm_.c: Include errno.h diff --git a/gcc/f/runtime/Makefile.in b/gcc/f/runtime/Makefile.in index 0f51385137a..5e019e55f5b 100644 --- a/gcc/f/runtime/Makefile.in +++ b/gcc/f/runtime/Makefile.in @@ -246,7 +246,7 @@ mostlyclean: done clean: - -rm -f config.log config.cache stamp-* + -rm -f config.log stamp-* for i in libI77 libF77 libU77; do \ if [ -f $$i/Makefile ]; then \ cd $$i; $(MAKE) -f Makefile clean; cd ..; \ @@ -254,7 +254,7 @@ clean: done distclean: clean - -rm -f Makefile lib?77/Makefile config.status libU77/config.status ../../include/f2c.h + -rm -f Makefile config.cache lib?77/Makefile config.status libU77/config.status ../../include/f2c.h maintainer-clean: distclean -rm -f $(srcdir)/configure $(srcdir)/libU77/configure