diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-03-22 11:53:01 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-03-22 11:53:01 +0000 |
commit | 295f4e42f1e2ab8b5c76e1f02a7c8e2cbd59213c (patch) | |
tree | f9cec6be8fc58fa4109ecb3cf82f68efef165a58 /Makefile.def | |
parent | 6dd297da046efe0b3be545053a676494daba3a2a (diff) | |
download | gcc-295f4e42f1e2ab8b5c76e1f02a7c8e2cbd59213c.zip gcc-295f4e42f1e2ab8b5c76e1f02a7c8e2cbd59213c.tar.gz gcc-295f4e42f1e2ab8b5c76e1f02a7c8e2cbd59213c.tar.bz2 |
Makefile.tpl: Rearrange by moving recursive_targets rules into their proper sections.
* Makefile.tpl: Rearrange by moving recursive_targets rules
into their proper sections.
* Makefile.tpl (top level bootstrap support): Move disabling
of coverage flags from 'make' to 'configure'; improve comments.
* Makefile.in: Regenerate.
From-SVN: r79818
Diffstat (limited to 'Makefile.def')
-rw-r--r-- | Makefile.def | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.def b/Makefile.def index 5a68098..4fbe1ca 100644 --- a/Makefile.def +++ b/Makefile.def @@ -139,6 +139,8 @@ recursive_targets = { make_target= distclean; }; recursive_targets = { make_target= maintainer-clean; }; // Flags which need to be passed down. +// special_cases=x,y,z indicates directories which do their own thing with +// this flag // Directories etc. flags_to_pass = { flag= DESTDIR ; }; @@ -170,7 +172,7 @@ flags_to_pass = { flag= target_alias ; }; // Build tools flags_to_pass = { flag= BISON ; }; -flags_to_pass = { flag= CC_FOR_BUILD ; }; +flags_to_pass = { flag= CC_FOR_BUILD ; special_cases=gcc; }; flags_to_pass = { flag= CXX_FOR_BUILD ; }; flags_to_pass = { flag= EXPECT ; }; flags_to_pass = { flag= INSTALL ; }; |