diff options
author | drow <drow@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-05 19:29:29 +0000 |
---|---|---|
committer | drow <drow@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-05 19:29:29 +0000 |
commit | 0a2e6193ad3098fccc923067d56b14ed88359f31 (patch) | |
tree | 724d051a34214e4639ce4814ee0d33d1a05e31a1 /Makefile.tpl | |
parent | 6b68e71ad8f9dc3c16f8a8b41929909bf4b7fd54 (diff) | |
download | gcc-0a2e6193ad3098fccc923067d56b14ed88359f31.tar.gz |
* Makefile.tpl (all-target): Correct @if conditional for target
modules.
* configure.in: Omit libiberty if building only target libgcc.
* configure, Makefile.in: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120494 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index 58f837d5a80..2d4fe074d2f 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -531,9 +531,10 @@ all-host: maybe-all-[+module+][+ IF bootstrap +] .PHONY: all-target [+ FOR target_modules +][+ IF bootstrap +] -@if [+module+]-no-bootstrap[+ ENDIF bootstrap +] +@if target-[+module+]-no-bootstrap[+ ENDIF bootstrap +] all-target: maybe-all-target-[+module+][+ IF bootstrap +] -@endif [+module+]-no-bootstrap[+ ENDIF bootstrap +][+ ENDFOR target_modules +] +@endif target-[+module+]-no-bootstrap[+ + ENDIF bootstrap +][+ ENDFOR target_modules +] # Do a target for all the subdirectories. A ``make do-X'' will do a # ``make X'' in all subdirectories (because, in general, there is a |