diff options
author | Andrew Stubbs <andrew.stubbs@st.com> | 2008-05-02 13:58:38 +0000 |
---|---|---|
committer | Andrew Stubbs <andrew.stubbs@st.com> | 2008-05-02 13:58:38 +0000 |
commit | d01a8610c32e2e361b3b9f0f43c0011f84558371 (patch) | |
tree | 920d9f3fd8ab886b07856d34093ce717e04568fb /gdb/Makefile.in | |
parent | 5009afc5ba7a0d57f28fbc834757145fe1f45549 (diff) | |
download | gdb-d01a8610c32e2e361b3b9f0f43c0011f84558371.zip gdb-d01a8610c32e2e361b3b9f0f43c0011f84558371.tar.gz gdb-d01a8610c32e2e361b3b9f0f43c0011f84558371.tar.bz2 |
2008-05-02 Andrew Stubbs <andrew.stubbs@st.com>
* main.h (batch_silent): Declare.
* event-top.c: Include main.h.
(gdb_setup_readline): Remove extern batch_silent declaration.
* infrun.c (normal_stop): Don't print source location when running in
--batch-silent mode.
* Makefile.in (event-top.o): Add main.h dependency.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 2000a0a..c7a3124 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2110,7 +2110,7 @@ event-loop.o: event-loop.c $(defs_h) $(event_loop_h) $(event_top_h) \ event-top.o: event-top.c $(defs_h) $(top_h) $(inferior_h) $(target_h) \ $(terminal_h) $(event_loop_h) $(event_top_h) $(interps_h) \ $(exceptions_h) $(cli_script_h) $(gdbcmd_h) $(readline_h) \ - $(readline_history_h) + $(readline_history_h) $(main_h) exceptions.o: exceptions.c $(defs_h) $(exceptions_h) $(breakpoint_h) \ $(target_h) $(inferior_h) $(annotate_h) $(ui_out_h) $(gdb_assert_h) \ $(gdb_string_h) $(serial_h) |