aboutsummaryrefslogtreecommitdiff
path: root/gdb/config
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1995-05-03 01:43:27 +0000
committerStan Shebs <shebs@codesourcery.com>1995-05-03 01:43:27 +0000
commit33bc979d1764c81a88c5681e4fee0099203bed75 (patch)
treef0272c8a35fcf0922be6e18b8ea87dd3b56d6efb /gdb/config
parent55ac59da2eab55ab8f74d69eab13c36d4da9fd3b (diff)
downloadgdb-33bc979d1764c81a88c5681e4fee0099203bed75.zip
gdb-33bc979d1764c81a88c5681e4fee0099203bed75.tar.gz
gdb-33bc979d1764c81a88c5681e4fee0099203bed75.tar.bz2
* configure.in (--enable-netrom): New configuration option.
* Makefile.in (REMOTE_OBS): Rename from REMOTE_O, append value of NETROM_OBS. (NETROM_OBS): New variable. * remote-nrom.c: New file, NetROM target support. * config/a29k/a29k-udi.mt, config/i960/vxworks960.mt: Use REMOTE_OBS instead of REMOTE_O. start-sanitize-arc * config/arc/arc.mt: Ditto. end-sanitize-arc
Diffstat (limited to 'gdb/config')
-rw-r--r--gdb/config/a29k/a29k-udi.mt2
-rw-r--r--gdb/config/arc/arc.mt4
-rw-r--r--gdb/config/i960/vxworks960.mt4
3 files changed, 7 insertions, 3 deletions
diff --git a/gdb/config/a29k/a29k-udi.mt b/gdb/config/a29k/a29k-udi.mt
index d0cac1a..6d5d27b 100644
--- a/gdb/config/a29k/a29k-udi.mt
+++ b/gdb/config/a29k/a29k-udi.mt
@@ -3,6 +3,6 @@ TDEPFILES= a29k-tdep.o remote-udi.o udip2soc.o udr.o udi2go32.o
TM_FILE= tm-a29k.h
# Disable standard remote support.
-REMOTE_O=
+REMOTE_OBS=
MT_CFLAGS = $(HOST_IPC)
diff --git a/gdb/config/arc/arc.mt b/gdb/config/arc/arc.mt
index 6b2dc12..6a8379b 100644
--- a/gdb/config/arc/arc.mt
+++ b/gdb/config/arc/arc.mt
@@ -1,5 +1,7 @@
# Target: arc processor
TDEPFILES= arc-tdep.o remote-arc.o
TM_FILE= tm-arc.h
-REMOTE_O=dcache.o remote-utils.o
+
+REMOTE_OBS= dcache.o remote-utils.o
+
SER_HARDWIRE= ser-go32-para.o
diff --git a/gdb/config/i960/vxworks960.mt b/gdb/config/i960/vxworks960.mt
index 6501f4a..3623804 100644
--- a/gdb/config/i960/vxworks960.mt
+++ b/gdb/config/i960/vxworks960.mt
@@ -1,8 +1,10 @@
# Target: VxWorks running on an Intel 960
TDEPFILES= i960-tdep.o remote-vx.o remote-vx960.o xdr_ld.o xdr_ptrace.o xdr_rdb.o
TM_FILE= tm-vx960.h
+
# Define this for the vx-share routines, which don't see param.h.
MT_CFLAGS= -DI80960
+
# Don't use remote.o; it doesn't compile (and won't work) due to lack of
# BREAKPOINT.
-REMOTE_O=dcache.o remote-utils.o
+REMOTE_OBS= dcache.o remote-utils.o