diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-06-09 15:20:21 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-06-09 15:20:21 +0000 |
commit | 8d3b0994cd3d164c1fa5bce161ba26cb8e079ac2 (patch) | |
tree | 3355cf87ab817b58a44d7f7a9094a1970423445e /gdb/Makefile.in | |
parent | 4b7ffdb2af59dc588f425b0628886125a279f793 (diff) | |
download | gdb-8d3b0994cd3d164c1fa5bce161ba26cb8e079ac2.zip gdb-8d3b0994cd3d164c1fa5bce161ba26cb8e079ac2.tar.gz gdb-8d3b0994cd3d164c1fa5bce161ba26cb8e079ac2.tar.bz2 |
2003-06-09 Andrew Cagney <cagney@redhat.com>
* printcmd.c (print_frame_nameless_args): Moved to "stack.c".
(print_frame_args): Moved to "stack.c".
* stack.c: Include "gdb_assert.h".
(print_frame_nameless_args): Moved from "printcmd.c", made static.
(print_frame_args): Moved from "printcmd.c".
* frame.h (print_frame_args): Delete declaration.
* Makefile.in (stack.o): Update dependencies.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 7733f94..922d392 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2265,7 +2265,8 @@ stabsread.o: stabsread.c $(defs_h) $(gdb_string_h) $(bfd_h) $(gdb_obstack_h) \ stack.o: stack.c $(defs_h) $(gdb_string_h) $(value_h) $(symtab_h) \ $(gdbtypes_h) $(expression_h) $(language_h) $(frame_h) $(gdbcmd_h) \ $(gdbcore_h) $(target_h) $(source_h) $(breakpoint_h) $(demangle_h) \ - $(inferior_h) $(annotate_h) $(ui_out_h) $(block_h) $(stack_h) + $(inferior_h) $(annotate_h) $(ui_out_h) $(block_h) $(stack_h) \ + $(gdb_assert_h) standalone.o: standalone.c $(gdb_stat_h) $(defs_h) $(symtab_h) $(frame_h) \ $(inferior_h) $(gdb_wait_h) std-regs.o: std-regs.c $(defs_h) $(builtin_regs_h) $(frame_h) $(gdbtypes_h) \ |