diff options
author | H.J. Lu <hjl@gnu.org> | 2000-09-07 03:14:39 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2000-09-07 03:14:39 +0000 |
commit | d5cfb451c1f2ce8bb4b9302fb1f04022bb416803 (patch) | |
tree | d581c9a78b890ea1d5543dd386679d5192c00c93 /gcc | |
parent | 735bce7e26f103978467b22e859e98c6a33529c7 (diff) | |
download | gcc-d5cfb451c1f2ce8bb4b9302fb1f04022bb416803.zip gcc-d5cfb451c1f2ce8bb4b9302fb1f04022bb416803.tar.gz gcc-d5cfb451c1f2ce8bb4b9302fb1f04022bb416803.tar.bz2 |
Makefile.in (clean_s1): Depend on stage_b.
* Makefile.in (clean_s1): Depend on stage_b.
(clean_s2): Depend on stage_d. Don't remove $(VOL_FILES) in
stage2. They are used for "make compare".
From-SVN: r36223
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7cc7fda..1b75381 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2000-09-06 H.J. Lu (hjl@gnu.org) + + * Makefile.in (clean_s1): Depend on stage_b. + (clean_s2): Depend on stage_d. Don't remove $(VOL_FILES) in + stage2. They are used for "make compare". + 2000-09-06 Mark Mitchell <mark@codesourcery.com> Move statement-tree facilities from C++ to C front-end. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index baa7b9d..7bc2797 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2794,13 +2794,12 @@ stage_f: stage_e touch stage_f # Additional steps for *-lean targets: -clean_s1: +clean_s1: stage_b -cd stage1; rm -f $(VOL_FILES) touch clean_s1 -clean_s2: +clean_s2: stage_d -rm -rf stage1 - -cd stage2; rm -f $(VOL_FILES) touch clean_s2 # This next little bit is the way it is for parallel builds. It's simply |