diff options
author | Hui Zhu <teawater@gmail.com> | 2009-04-30 02:58:37 +0000 |
---|---|---|
committer | Hui Zhu <teawater@gmail.com> | 2009-04-30 02:58:37 +0000 |
commit | 69d05d3898f104fab077edf3c80e4f158084a8f4 (patch) | |
tree | d6d068b338a26df2b48233131502bc91284809ba /gdb/Makefile.in | |
parent | 81e64f550921f2c4eaa972f486d5a044766d0b32 (diff) | |
download | gdb-69d05d3898f104fab077edf3c80e4f158084a8f4.zip gdb-69d05d3898f104fab077edf3c80e4f158084a8f4.tar.gz gdb-69d05d3898f104fab077edf3c80e4f158084a8f4.tar.bz2 |
Process record and replay target.
* Makefile.in (SFILES): Add record.c.
(COMMON_OBS): Add record.o.
* record.c, record.h: New file.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 35c3813..fbdc217 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -664,7 +664,8 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \ valarith.c valops.c valprint.c value.c varobj.c vec.c \ wrapper.c \ xml-tdesc.c xml-support.c \ - inferior.c gdb_usleep.c + inferior.c gdb_usleep.c \ + record.c LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c @@ -816,7 +817,7 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ solib.o solib-null.o \ prologue-value.o memory-map.o xml-support.o \ target-descriptions.o target-memory.o xml-tdesc.o xml-builtin.o \ - inferior.o osdata.o gdb_usleep.o + inferior.o osdata.o gdb_usleep.o record.o TSOBS = inflow.o |