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
This commit is contained in:
H.J. Lu 2000-09-07 03:14:39 +00:00 committed by Alexandre Oliva
parent 735bce7e26
commit d5cfb451c1
2 changed files with 8 additions and 3 deletions

View File

@ -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.

View File

@ -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