diff options
author | Stan Shebs <shebs@codesourcery.com> | 1997-08-12 02:34:14 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1997-08-12 02:34:14 +0000 |
commit | 339cddf717d3db8d865fba90584cb0e1110a6b60 (patch) | |
tree | 272fbf7d90e13c4267689e1b4383248c6f031fab /gdb/Makefile.in | |
parent | 2549d2b38572740e9ce0ec4f517f5b8357ea51e0 (diff) | |
download | gdb-339cddf717d3db8d865fba90584cb0e1110a6b60.zip gdb-339cddf717d3db8d865fba90584cb0e1110a6b60.tar.gz gdb-339cddf717d3db8d865fba90584cb0e1110a6b60.tar.bz2 |
* dink32-rom.c: New file, support for DINK32 monitor.
* Makefile.in (dink32-rom.o): Add build rule.
* config/powerpc/ppc-eabi.mt, config/powerpc/ppc-sim.mt
(TDEPFILES): Add dink32-rom.o.
* monitor.h (MO_32_REGS_PAIRED, MO_SETREG_INTERACTIVE,
MO_SETMEM_INTERACTIVE, MO_GETMEM_16_BOUNDARY,
MO_CLR_BREAK_1_BASED): New monitor interface flags.
* monitor.c: Use them.
(monitor_store_register): Use setreg.term if defined.
(monitor_insert_breakpoint, monitor_remove_breakpoint): Notice
if set_break and clr_break fields are empty.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 99309c1..0949812 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -575,16 +575,23 @@ install-only: $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$transformed_name.1 # start-sanitize-gdbtk if [ x"$(ENABLE_GDBTK)" != x ] ; then \ - if [ ! -d $(datadir)/gdbtcl ]; then \ - echo "Making directory gdbtcl"; \ - mkdir $(datadir)/gdbtcl; \ - chmod 755 $(datadir)/gdbtcl; \ + $(SHELL) $(srcdir)/../mkinstalldirs $(datadir)/gdbtcl ; \ + if [ x"$(ENABLE_IDE)" = x ]; then \ + cd $(srcdir)/gdbtcl ; \ + for i in asm.tcl break.xbm breakpoint.tcl command.tcl copyright.tcl expr.tcl file.tcl main.tcl register.tcl source.tcl stop2.gif tclIndex ; \ + do \ + $(INSTALL_DATA) $$i $(datadir)/gdbtcl/$$i ; \ + done ; \ + else \ + $(SHELL) $(srcdir)/../mkinstalldirs \ + $(datadir)/gdbtcl/images \ + $(datadir)/gdbtcl/images2 ; \ + cd $(srcdir)/gdbtcl2 ; \ + for i in *.tcl images/*.gif images2/*.gif; \ + do \ + $(INSTALL_DATA) $$i $(datadir)/gdbtcl/$$i ; \ + done ; \ fi ; \ - cd $(srcdir)/gdbtcl ; \ - for i in asm.tcl break.xbm breakpoint.tcl command.tcl copyright.tcl expr.tcl file.tcl main.tcl register.tcl source.tcl stop2.gif tclIndex ; \ - do \ - $(INSTALL_DATA) $$i $(datadir)/gdbtcl/$$i ; \ - done ; \ else \ true ; \ fi @@ -1152,6 +1159,9 @@ delta68-nat.o: delta68-nat.c $(defs_h) demangle.o: demangle.c $(defs_h) $(gdbcmd_h) gdb_string.h +dink32-rom.o: dink32-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \ + $(inferior_h) target.h serial.h terminal.h + dpx2-nat.o: dpx2-nat.c $(defs_h) $(gdbcore_h) gdb_string.h dstread.o: dstread.c gdb_string.h |