aboutsummaryrefslogtreecommitdiff
path: root/gdb/Makefile.in
diff options
context:
space:
mode:
authorSean Eric Fagan <sef@cygnus>1992-10-06 23:03:51 +0000
committerSean Eric Fagan <sef@cygnus>1992-10-06 23:03:51 +0000
commitfabfaff4660bfe1b9f1d07ab375cf409283753ec (patch)
tree46c14274cfa0ae93df20826b5af06b2cc66e4f32 /gdb/Makefile.in
parent3950a34e45858c6f5a33e94b71832febc282eae3 (diff)
downloadgdb-fabfaff4660bfe1b9f1d07ab375cf409283753ec.zip
gdb-fabfaff4660bfe1b9f1d07ab375cf409283753ec.tar.gz
gdb-fabfaff4660bfe1b9f1d07ab375cf409283753ec.tar.bz2
Added remote-ser.c, which is a version of remote.c that uses the routines
in the ser-*.c files. Needed for some systems, such as GO32, which don't have stuff like <termios.h>. Makefile.in now uses $(REMOTE), which defaults to remote.o, instead of remote.o.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r--gdb/Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 06279ec..b61417a 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -171,6 +171,8 @@ DIST=gdb
LINT=/usr/5bin/lint
LINTFLAGS= -I${BFD_DIR}
+REMOTE = remote.o # Override if necessary
+
# Host and target-dependent makefile fragments come in here.
####
# End of host and target-dependent makefile fragments
@@ -297,7 +299,7 @@ TARFILES = ${TAGFILES_MAINDIR} ${OTHERS} ${REMOTE_EXAMPLES}
OBS = main.o blockframe.o breakpoint.o findvar.o stack.o source.o \
values.o eval.o valops.o valarith.o valprint.o printcmd.o \
- symtab.o symfile.o symmisc.o infcmd.o infrun.o remote.o \
+ symtab.o symfile.o symmisc.o infcmd.o infrun.o $(REMOTE) \
command.o utils.o expprint.o environ.o version.o gdbtypes.o \
copying.o $(DEPFILES) mem-break.o target.o \
ieee-float.o putenv.o parse.o language.o $(YYOBJ) \