diff options
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 6af47c0..a36dd6b 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -187,6 +187,10 @@ RUNTESTFLAGS= # besides ser-unix.o SER_HARDWIRE=ser-unix.o +# The `remote' debugging target is supported for most architectures, +# but not all (e.g. 960) +REMOTE_O=remote.o + # Host and target-dependent makefile fragments come in here. #### # End of host and target-dependent makefile fragments @@ -386,7 +390,7 @@ TARDIRS = doc sparclite # variables analogous to SER_HARDWIRE which get defaulted in this # Makefile.in -DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) +DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) $(REMOTE_O) SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) # Don't include YYFILES (*.tab.c) because we already include *.y in SFILES, |