diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-04-21 21:53:44 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-04-21 21:53:44 +0000 |
commit | 3601203380802029af52392c3970f15f96816402 (patch) | |
tree | 7bf11c28ca9d2c7379b907dd8dac9dbfd6660866 | |
parent | 3379287ac9a887aa3c8e2ffd697816c3aff32ef0 (diff) | |
download | gdb-3601203380802029af52392c3970f15f96816402.zip gdb-3601203380802029af52392c3970f15f96816402.tar.gz gdb-3601203380802029af52392c3970f15f96816402.tar.bz2 |
* Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
alphafbsd-tdep.c.
(alpha-linux-tdep.o): New dependency list.
(alphafbsd-tdep.o): Likewise.
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/Makefile.in | 10 |
2 files changed, 14 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b680465..eb4ee43 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,12 @@ 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com> + * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and + alphafbsd-tdep.c. + (alpha-linux-tdep.o): New dependency list. + (alphafbsd-tdep.o): Likewise. + +2002-04-21 Jason Thorpe <thorpej@wasabisystems.com> + * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset to here... * alpha-tdep.c: ...from here. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 266ce14..eb42d32 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1173,9 +1173,9 @@ unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET : ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \ 29k-share/udi/udi2go32.c \ - a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \ - arm-linux-nat.c arm-linux-tdep.c arm-tdep.c armnbsd-nat.c \ - armnbsd-tdep.c \ + a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c alpha-linux-tdep.c \ + alphafbsd-tdep.c arm-linux-nat.c arm-linux-tdep.c arm-tdep.c \ + armnbsd-nat.c armnbsd-tdep.c \ coff-solib.c \ core-sol2.c core-regset.c core-aout.c corelow.c \ dcache.c delta68-nat.c dpx2-nat.c dstread.c exec.c fork-child.c \ @@ -1244,6 +1244,10 @@ alpha-tdep.o: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \ $(inferior_h) $(symtab_h) $(dis_asm_h) $(gdb_string_h) $(linespec_h) \ $(regcache_h) $(doublest_h) $(BFD_SRC)/elf-bfd.h alpha-tdep.h +alpha-linux-tdep.o: alpha-linux-tdep.c $(defs_h) $(value_h) alpha-tdep.h + +alphafbsd-tdep.o: alphafbsd-tdep.c $(defs_h) $(value_h) alpha-tdep.h + annotate.o: annotate.c $(defs_h) $(annotate_h) $(value_h) $(target_h) $(gdbtypes_h) arm-linux-nat.o: arm-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \ |