diff options
author | Nick Clifton <nickc@redhat.com> | 1998-01-08 11:12:39 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1998-01-08 11:12:39 +0000 |
commit | 3a9c3d120fe4b7cd24f75f275e4b1034577ce056 (patch) | |
tree | b0c06fea2896a37889cdb272d9acbe476689e6e1 /gdb/Makefile.in | |
parent | d7ab10784a26a2d5f2174afa9c17450851abbb75 (diff) | |
download | gdb-3a9c3d120fe4b7cd24f75f275e4b1034577ce056.zip gdb-3a9c3d120fe4b7cd24f75f275e4b1034577ce056.tar.gz gdb-3a9c3d120fe4b7cd24f75f275e4b1034577ce056.tar.bz2 |
Applied patches from Tony.Thompson@arm.com to implement the Angel remote
debugging interface and resurrected associated RDI files.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 7f6e1de..c56503f 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -163,6 +163,10 @@ WIN32LIBS = @WIN32LIBS@ ENABLE_GDBTK= @ENABLE_GDBTK@ ENABLE_IDE= @ENABLE_IDE@ +LIBGUI = ../libgui/src/libgui.a + +GUI_CFLAGS_X = -I$(srcdir)/../libgui/src + IDE_CFLAGS_X = -I$(srcdir)/../libide/src \ `if [ x"$(ENABLE_IDE)" != x ] ; then \ echo -DIDE -I$(srcdir)/../ilu/runtime/mainloop;\ @@ -179,7 +183,7 @@ IDE_DEPS = ../ilu/runtime/mainloop/libilu-Tk.a \ ../ilu/runtime/c/libilu-c.a ../ilu/runtime/kernel/libilu.a IDE=$(IDE_X) -IDE_CFLAGS=$(IDE_CFLAGS_X) +IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X) #end-sanitize-gdbtk ENABLE_CFLAGS= @ENABLE_CFLAGS@ @@ -1359,6 +1363,19 @@ remote-adapt.o: remote-adapt.c $(wait_h) $(defs_h) $(gdbcore_h) \ remote-array.o: remote-array.c $(wait_h) $(defs_h) $(gdbcore_h) target.h \ gdb_string.h $(command_h) serial.h monitor.h $(remote_utils_h) +remote-rdi.o: remote-rdi.c $(wait_h) $(defs_h) $(gdbcore_h) \ + $(inferior_h) gdb_string.h + +rdi-share/libangsd.a: force + @dir=rdi-share; \ + if [ -f ./$${dir}/Makefile ] ; then \ + r=`pwd`; export r; \ + srcroot=`cd $(srcdir); pwd`; export srcroot; \ + (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \ + else \ + true; \ + fi + remote-rdp.o: remote-rdp.c $(wait_h) $(defs_h) $(gdbcore_h) \ $(inferior_h) gdb_string.h |