diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-10-07 13:30:00 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-10-07 13:30:00 +0000 |
commit | 39e7313709dfda368480694ba7efc994d10e09ac (patch) | |
tree | e19afbb743bc981d8f95924461bfa968a6b0b44f | |
parent | c2e494a899aa67935ab8ed7082bf2176292186a5 (diff) | |
download | gcc-39e7313709dfda368480694ba7efc994d10e09ac.zip gcc-39e7313709dfda368480694ba7efc994d10e09ac.tar.gz gcc-39e7313709dfda368480694ba7efc994d10e09ac.tar.bz2 |
Makefile.in: Add more comments separating large conceptually separate sections.
* Makefile.in: Add more comments separating large conceptually
separate sections.
From-SVN: r72192
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/Makefile.in | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f926901..bfd7f69 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2003-10-07 Nathanael Nerode <neroden@gcc.gnu.org> + * Makefile.in: Add more comments separating large conceptually + separate sections. + * configure.in: Clean up thread file logic. * configure: Regenerate. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index bdd8dd6..0fd10b8 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3312,6 +3312,10 @@ TAGS: lang.tags mv tmp-tags/* .; \ rmdir tmp-tags) +# ------------------------------------------------------ +# Bootstrap-related targets (not used during 'make all') +# ------------------------------------------------------ + # A list of files to be destroyed during "lean" builds. VOL_FILES=`echo $(BACKEND) $(OBJS) $(C_OBJS) $(LIBCPP_OBJS) *.c *.h gen*` @@ -3807,8 +3811,10 @@ risky-stage4: stage4 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4 .PHONY: stagefeedback stageprofile +# ----------------------------------------------------- # Rules for generating translated message descriptions. # Disabled by autoconf if the tools are not available. +# ----------------------------------------------------- XGETTEXT = @XGETTEXT@ GMSGFMT = @GMSGFMT@ |