diff options
author | Joel Brobecker <brobecker@gnat.com> | 2006-08-08 22:06:06 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2006-08-08 22:06:06 +0000 |
commit | 2f61ca93c255ebbe010e39cdcb8fce2b1ee8e8e2 (patch) | |
tree | fa1f878eed39400f7ebde65cb2f8a5b38a6cc9f4 /gdb/Makefile.in | |
parent | f4b618d1636802c1a830e9887605deb055c6b74d (diff) | |
download | gdb-2f61ca93c255ebbe010e39cdcb8fce2b1ee8e8e2.zip gdb-2f61ca93c255ebbe010e39cdcb8fce2b1ee8e8e2.tar.gz gdb-2f61ca93c255ebbe010e39cdcb8fce2b1ee8e8e2.tar.bz2 |
* source.c: #include gdb_assert.h.
(substitute_path_rule): New struct.
(substitute_path_rules): New static global variable.
(substitute_path_rule_matches): New function.
(get_substitute_path_rule): New function.
(rewrite_source_path): New function.
(find_and_open_source): Add source path rewriting support.
(strip_trailing_directory_separator): New function.
(find_substitute_path_rule): New function.
(add_substitute_path_rule): New function.
(delete_substitute_path_rule): New function.
(show_substitute_path_command): New function.
(unset_substitute_path_command): New function.
(set_substitute_path_command): New function.
(_initialize_source): Add new substitute-path commands.
* Makefile.in (source.o): Add dependency on gdb_assert.h.
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 21a6abc..79749204 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2639,7 +2639,8 @@ source.o: source.c $(defs_h) $(symtab_h) $(expression_h) $(language_h) \ $(command_h) $(source_h) $(gdbcmd_h) $(frame_h) $(value_h) \ $(gdb_string_h) $(gdb_stat_h) $(gdbcore_h) $(gdb_regex_h) \ $(symfile_h) $(objfiles_h) $(annotate_h) $(gdbtypes_h) $(linespec_h) \ - $(filenames_h) $(completer_h) $(ui_out_h) $(readline_h) + $(filenames_h) $(completer_h) $(ui_out_h) $(readline_h) \ + $(gdb_assert_h) sparc64fbsd-nat.o: sparc64fbsd-nat.c $(defs_h) $(regcache_h) $(target_h) \ $(fbsd_nat_h) $(sparc64_tdep_h) $(sparc_nat_h) $(bsd_kvm_h) sparc64fbsd-tdep.o: sparc64fbsd-tdep.c $(defs_h) $(frame_h) \ |