diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-06-09 18:47:19 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-06-09 18:47:19 +0000 |
commit | 1f42ecdca83655d00e3e92746b776758c6d163d1 (patch) | |
tree | 5b931453a7a36a0e6ca5075e193620c527c7e8f4 /gcc/Makefile.in | |
parent | 249c8489f8d2d84a5ab64f5783afd66452abc1e6 (diff) | |
download | gcc-1f42ecdca83655d00e3e92746b776758c6d163d1.tar.gz |
(distclean): Remove config.bak.
(maintainer-clean): Output warning, and do not remove `configure',
as per GNU standards.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14183 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 49e00cf2711..598a62b7952 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2021,7 +2021,8 @@ $(srcdir)/INSTALL: install1.texi install.texi # `clean' deletes everything made by running `make all'. # `distclean' also deletes the files made by config. # `maintainer-clean' also deletes everything that could be regenerated -# automatically. We remove as much from the language subdirectories as we can +# automatically, except for `configure'. +# We remove as much from the language subdirectories as we can # (less duplicated code). @@ -2099,7 +2100,7 @@ clean: mostlyclean bytecode.clean lang.clean # while building and installing GCC. distclean: clean bytecode.distclean lang.distclean -rm -f tm.h config.h tconfig.h hconfig.h md - -rm -f config.status config.run config.cache + -rm -f config.status config.run config.cache config.bak -rm -f Make-host Make-target Make-lang Make-hooks -rm -f Makefile specs.h options.h *.oaux -rm -fr stage1 stage2 stage3 stage4 @@ -2126,16 +2127,18 @@ extraclean: distclean lang.extraclean -rm -f */*.tar */*.xtar */*diff */*.diff.* */*.tar.* */*.xtar.* */*diffs -rm -f */*lose */*.s */*.s[0-9] */*.i -# Get rid of every file that's generated from some other file. +# Get rid of every file that's generated from some other file, except for `configure'. # Most of these files ARE PRESENT in the GCC distribution. -maintainer-clean: distclean bytecode.maintainer-clean lang.maintainer-clean +maintainer-clean: + @echo 'This command is intended for maintainers to use; it' + @echo 'deletes files that may need special tools to rebuild.' + $(MAKE) distclean bytecode.maintainer-clean lang.maintainer-clean -rm -f c-parse.y c-gperf.h objc-parse.y -rm -f objc-parse.c objc-parse.output -rm -f c-parse.c c-parse.h c-parse.output -rm -f cexp.c cexp.output TAGS -rm -f cpp.info* cpp.??s cpp.*aux -rm -f gcc.info* gcc.??s gcc.*aux - -rm -f configure # Entry points `install' and `uninstall'. # Also use `install-collect2' to install collect2 when the config files don't. |