aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-06-09 15:45:54 +0000
committerAndrew Cagney <cagney@redhat.com>2002-06-09 15:45:54 +0000
commit3c25f8c7b071182238e0833c72552ee0e72fd2ae (patch)
tree72f9fd7da4b0bc3057d07dbc142ab9faa014e42a /gdb
parent1029b7fa6a31d4cbb42e8d14c67ff4fdbbd4bd8c (diff)
downloadgdb-3c25f8c7b071182238e0833c72552ee0e72fd2ae.zip
gdb-3c25f8c7b071182238e0833c72552ee0e72fd2ae.tar.gz
gdb-3c25f8c7b071182238e0833c72552ee0e72fd2ae.tar.bz2
Move include/callback.h and include/remote-sim.h to include/gdb/.
Update accordingly.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog9
-rw-r--r--gdb/Makefile.in7
-rw-r--r--gdb/remote-rdp.c2
-rw-r--r--gdb/remote-sim.c4
4 files changed, 16 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index dec4058..ecc6213 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,12 @@
+2002-06-09 Andrew Cagney <cagney@redhat.com>
+
+ * Makefile.in (callback_h): Define.
+ (remote_sim_h): Update path to remote-sim.h.
+ (remote-rdp.o): Add $(callback_h).
+ (remote-sim.o): Use $(callback_h).
+ * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
+ * remote-rdp.c: Include "gdb/callback.h".
+
2002-06-09 Mark Kettenis <kettenis@gnu.org>
* osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 1919422..0f8f7b4 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -568,8 +568,9 @@ LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
getopt_h = $(INCLUDE_DIR)/getopt.h
floatformat_h = $(INCLUDE_DIR)/floatformat.h
bfd_h = $(BFD_DIR)/bfd.h
+callback_h = $(INCLUDE_DIR)/gdb/callback.h
dis_asm_h = $(INCLUDE_DIR)/dis-asm.h
-remote_sim_h = $(INCLUDE_DIR)/remote-sim.h
+remote_sim_h = $(INCLUDE_DIR)/gdb/remote-sim.h
demangle_h = $(INCLUDE_DIR)/demangle.h
obstack_h = $(INCLUDE_DIR)/obstack.h
sim_d10v_h = $(INCLUDE_DIR)/gdb/sim-d10v.h
@@ -1975,7 +1976,7 @@ rdi-share/libangsd.a: force
fi
remote-rdp.o: remote-rdp.c $(defs_h) $(gdbcore_h) \
- $(inferior_h) $(gdb_string_h) $(arm_tdep_h)
+ $(inferior_h) $(gdb_string_h) $(arm_tdep_h) $(callback_h)
remote-bug.o: remote-bug.c $(defs_h) $(gdbcore_h) $(serial_h) \
$(inferior_h) $(target_h) $(terminal_h) $(remote_utils_h) \
@@ -2012,7 +2013,7 @@ remote-sds.o: remote-sds.c $(bfd_h) $(defs_h) $(gdbcmd_h) \
$(gdb_string_h) $(regcache_h)
remote-sim.o: remote-sim.c $(defs_h) $(inferior_h) $(value_h) $(gdb_string_h) \
- $(terminal_h) $(target_h) $(gdbcore_h) $(INCLUDE_DIR)/callback.h \
+ $(terminal_h) $(target_h) $(gdbcore_h) $(callback_h) \
$(remote_sim_h) $(remote_utils_h) $(command_h) $(regcache_h) \
$(sim_regno_h)
diff --git a/gdb/remote-rdp.c b/gdb/remote-rdp.c
index 280e79c..34a42ab 100644
--- a/gdb/remote-rdp.c
+++ b/gdb/remote-rdp.c
@@ -41,7 +41,7 @@
#include "defs.h"
#include "inferior.h"
#include "value.h"
-#include "callback.h"
+#include "gdb/callback.h"
#include "command.h"
#include <ctype.h>
#include <fcntl.h>
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c
index 4096d7d..221efe4 100644
--- a/gdb/remote-sim.c
+++ b/gdb/remote-sim.c
@@ -35,8 +35,8 @@
#include "terminal.h"
#include "target.h"
#include "gdbcore.h"
-#include "callback.h"
-#include "remote-sim.h"
+#include "gdb/callback.h"
+#include "gdb/remote-sim.h"
#include "remote-utils.h"
#include "command.h"
#include "regcache.h"