diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2002-08-09 06:19:08 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-08-09 06:19:08 +0000 |
commit | 4b7091eb623ae501ec646b47f26e84b783043f47 (patch) | |
tree | 2d216c719998f5bc9a35df885c61ae8b14a03fbb /gcc/Makefile.in | |
parent | f45f9aedfceba18063fe5e8f55ff21cd3239b5b2 (diff) | |
download | gcc-4b7091eb623ae501ec646b47f26e84b783043f47.tar.gz |
Makefile.in (c-opts.o): Update
* Makefile.in (c-opts.o): Update
* c-opts.c: Include intl.h.
(print_help): Move from cppinit.c. Remove unused options.
(COMMAND_LINE_OPTIONS): Move more from cppinit.c.
(missing_arg): Complain for switches without an argument.
(c_common_decode_option): Reject missing joined arguments.
Handle new switches from cppinit.c.
* cppinit.c (COMMAND_LINE_OPTIONS): Move some switches to c-opts.c.
(cpp_handle_option): Similarly.
(print_help): Moved to c-opts.c.
* cpplib.h (struct cpp_options): Remove help_only.
* gcc.c (cpp_unique_options): Remove -$.
* doc/cppopts.texi: Undocument -h.
From-SVN: r56155
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 821519dfec7..c74700707f9 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1241,7 +1241,8 @@ c-pretty-print.o : c-pretty-print.c c-pretty-print.h pretty-print.h \ $(C_COMMON_H) $(CONFIG_H) $(SYSTEM_H) real.h c-opts.o : c-opts.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_COMMON_H) \ - c-pragma.h flags.h toplev.h langhooks.h tree-inline.h diagnostic.h + c-pragma.h flags.h toplev.h langhooks.h tree-inline.h diagnostic.h \ + intl.h # A file used by all variants of C and some other languages. |