diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-08-24 21:49:55 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2007-08-24 21:49:55 +0000 |
commit | 3d6b762c68c6e19bdf387c0f1db7773fd22aab9a (patch) | |
tree | aaed967f4fb27d39d98495f58b5aa56c5d102381 /gas/Makefile.in | |
parent | 534a31f6908dfec77b02051240630059e3ad7520 (diff) | |
download | gdb-3d6b762c68c6e19bdf387c0f1db7773fd22aab9a.zip gdb-3d6b762c68c6e19bdf387c0f1db7773fd22aab9a.tar.gz gdb-3d6b762c68c6e19bdf387c0f1db7773fd22aab9a.tar.bz2 |
2007-08-24 Joseph Myers <joseph@codesourcery.com>
Paul Brook <paul@codesourcery.com>
* remap.c: New.
* as.h (remap_debug_filename, add_debug_prefix_map): Declare.
* as.c (show_usage): Document --debug-prefix-map option.
(parse_args): Handle --debug-prefix-map.
* dwarf2dbg.c (out_file_list, out_debug_info): Remap debug paths.
* stabs.c (stabs_generate_asm_file): Remap debug paths.
* Makefile.am (GAS_CFILES): Add remap.c
(GENERIC_OBJS): Add remap.o.
Regenerate dependencies.
* Makefile.in: Regenerate.
* doc/as.texinfo (--debug-prefix-map): Document.
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r-- | gas/Makefile.in | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in index 6a43cca..1c5958d 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -76,9 +76,9 @@ am__objects_1 = app.$(OBJEXT) as.$(OBJEXT) atof-generic.$(OBJEXT) \ flonum-mult.$(OBJEXT) frags.$(OBJEXT) hash.$(OBJEXT) \ input-file.$(OBJEXT) input-scrub.$(OBJEXT) listing.$(OBJEXT) \ literal.$(OBJEXT) macro.$(OBJEXT) messages.$(OBJEXT) \ - output-file.$(OBJEXT) read.$(OBJEXT) sb.$(OBJEXT) \ - stabs.$(OBJEXT) subsegs.$(OBJEXT) symbols.$(OBJEXT) \ - write.$(OBJEXT) + output-file.$(OBJEXT) read.$(OBJEXT) remap.$(OBJEXT) \ + sb.$(OBJEXT) stabs.$(OBJEXT) subsegs.$(OBJEXT) \ + symbols.$(OBJEXT) write.$(OBJEXT) am_as_new_OBJECTS = $(am__objects_1) as_new_OBJECTS = $(am_as_new_OBJECTS) am__DEPENDENCIES_1 = tc-@target_cpu_type@.o @@ -439,6 +439,7 @@ GAS_CFILES = \ messages.c \ output-file.c \ read.c \ + remap.c \ sb.c \ stabs.c \ subsegs.c \ @@ -682,6 +683,7 @@ GENERIC_OBJS = \ messages.o \ output-file.o \ read.o \ + remap.o \ subsegs.o \ symbols.o \ write.o \ @@ -1341,6 +1343,12 @@ DEPOBJ_bfin_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \ $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h +DEPOBJ_cr16_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \ + $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ + $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cr16.h dwarf2dbg.h \ + $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ + $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h + DEPOBJ_cris_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-cris.h \ $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ $(INCDIR)/obstack.h @@ -2996,6 +3004,7 @@ messages.o: messages.c output-file.o: output-file.c output-file.h read.o: read.c $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ sb.h macro.h ecoff.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h +remap.o: remap.c sb.o: sb.c sb.h stabs.o: stabs.c $(INCDIR)/obstack.h subsegs.h ecoff.h \ $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def |