summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorbrolley <brolley@138bc75d-0d04-0410-961f-82ee72b054a4>1999-05-11 08:49:39 +0000
committerbrolley <brolley@138bc75d-0d04-0410-961f-82ee72b054a4>1999-05-11 08:49:39 +0000
commit4089ce387def16ea8abbdcf3899bb2e261dd4ba0 (patch)
tree434e1bd1baa9088be93ff54ccedd36b93d77d0e3 /gcc/toplev.c
parent642a7851091137b04f2593e0b26357602dfc4688 (diff)
downloadgcc-4089ce387def16ea8abbdcf3899bb2e261dd4ba0.tar.gz
Tue May 11 11:45:16 1999 Dave Brolley <brolley@cygnus.com>
* toplev.c (documented_lang_options): Add -MD, -MMD, -M and -MM for cpplib-enabled compilers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26881 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 1fe439a7247..6920b26dad1 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -1093,6 +1093,12 @@ documented_lang_options[] =
{ "-A", "" },
{ "-D", "" },
{ "-I", "" },
+#if USE_CPPLIB
+ { "-MD", "Print dependencies to FILE.d" },
+ { "-MMD", "Print dependencies to FILE.d" },
+ { "-M", "Print dependencies to stdout" },
+ { "-MM", "Print dependencies to stdout" },
+#endif /* USE_CPPLIB */
{ "-U", "" },
{ "-H", "" },
{ "-idirafter", "" },