diff options
author | Richard Henderson <rth@cygnus.com> | 1997-12-22 19:16:26 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1997-12-22 19:16:26 -0800 |
commit | 5768f2112cf69725d22a4c1deb2bdefdb9db62fd (patch) | |
tree | 0dcb4fe460d5cdf63b7ca00cadb83246433720d9 /gcc | |
parent | eeaf420b472bc097709c69c5509b43b5693b3cab (diff) | |
download | gcc-5768f2112cf69725d22a4c1deb2bdefdb9db62fd.zip gcc-5768f2112cf69725d22a4c1deb2bdefdb9db62fd.tar.gz gcc-5768f2112cf69725d22a4c1deb2bdefdb9db62fd.tar.bz2 |
Makefile.in (clean): Remove the stages with their objects here ...
* Makefile.in (clean): Remove the stages with their objects here ...
(distclean): ... instead of here.
From-SVN: r17210
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index da504dc..2ec80f0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Tue Dec 23 03:14:54 1997 Richard Henderson <rth@cygnus.com> + + * Makefile.in (clean): Remove the stages with their objects here ... + (distclean): ... instead of here. + Mon Dec 22 11:24:01 1997 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * cse.c (rtx_cost): Add default case in enumeration switch. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 329f41f..1fe62508 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2148,6 +2148,7 @@ clean: mostlyclean bytecode.clean lang.clean else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \ rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \ fi ; fi + -rm -fr stage1 stage2 stage3 stage4 # Delete all files that users would normally create # while building and installing GCC. @@ -2156,7 +2157,6 @@ distclean: clean bytecode.distclean lang.distclean -rm -f config.status config.run config.cache config.bak -rm -f Make-lang Make-hooks Make-host Make-target -rm -f Makefile specs.h options.h *.oaux - -rm -fr stage1 stage2 stage3 stage4 -rm -f */stage1 */stage2 */stage3 */stage4 */include -rm -f c-parse.output -rm -f *.asm |