diff options
author | Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> | 2003-10-16 02:36:39 +0000 |
---|---|---|
committer | Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> | 2003-10-16 02:36:39 +0000 |
commit | b4b4b794d17e89ec944b14324068f73c5164c3ab (patch) | |
tree | 09f384957d31eb3d957c2dee2051ad1ae3c77e23 /gdb/Makefile.in | |
parent | fb3e19c03f8235cc4fb687dadb8e4d32ac767da6 (diff) | |
download | gdb-b4b4b794d17e89ec944b14324068f73c5164c3ab.zip gdb-b4b4b794d17e89ec944b14324068f73c5164c3ab.tar.gz gdb-b4b4b794d17e89ec944b14324068f73c5164c3ab.tar.bz2 |
2003-10-16 Kei Sakamoto <sakamoto.kei@renesas.com>
* remote-m32r-sdi.c : New file, interface to m32r on-chip
debug interface, SDI (Scalable Debug Interface).
* NEWS: Mention m32r SDI protocol was supported.
* Makefile.in (remote-m32r-sdi.o): Add build rule.
* config/m32r/m32r.mt (TDEPFILES) : Add remote-m32r-sdi.o.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 17a7c7a..8a9e746 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1287,7 +1287,7 @@ ALLDEPFILES = \ ppcnbsd-nat.o ppcnbsd-tdep.o \ procfs.c \ remote-e7000.c \ - remote-hms.c remote-mips.c \ + remote-hms.c remote-m32r-sdi.c remote-mips.c \ remote-rdp.c remote-sim.c \ remote-st.c remote-utils.c dcache.c \ remote-vx.c \ @@ -2161,6 +2161,8 @@ remote-fileio.o: remote-fileio.c $(defs_h) $(gdb_string_h) $(gdbcmd_h) \ $(remote_fileio_h) remote-hms.o: remote-hms.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ $(serial_h) $(regcache_h) +remote-m32r-sdi.o: remote-m32r-sdi.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \ + $(inferior_h) $(target_h) $(regcache_h) $(gdb_string_h) $(serial_h) remote-mips.o: remote-mips.c $(defs_h) $(inferior_h) $(bfd_h) $(symfile_h) \ $(gdbcmd_h) $(gdbcore_h) $(serial_h) $(target_h) $(remote_utils_h) \ $(gdb_string_h) $(gdb_stat_h) $(regcache_h) |