aboutsummaryrefslogtreecommitdiff
path: root/gdb/Makefile.in
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1994-06-16 22:02:24 +0000
committerStan Shebs <shebs@codesourcery.com>1994-06-16 22:02:24 +0000
commit6ec7e4d36a85990132baf8b0166614f273e7b31d (patch)
treeee46043fa04ce3057a356c4a29a944dbd0c2ac83 /gdb/Makefile.in
parent6f88f0312286a7356b43ff479642a4894ea07890 (diff)
downloadgdb-6ec7e4d36a85990132baf8b0166614f273e7b31d.zip
gdb-6ec7e4d36a85990132baf8b0166614f273e7b31d.tar.gz
gdb-6ec7e4d36a85990132baf8b0166614f273e7b31d.tar.bz2
* configure.in: Improve sorting/formatting of hosts and targets.
(i[34]86-*-mach3*, i[34]86-*-osf1mk*, mips-*-mach3*, m88*-*-mach3*, ns32k-*-mach3*): Recognize. * Makefile.in (gdb-stop): New target. * gdb-stop.c: New file, utility to gets attention of waiting GDBs in Mach 3.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r--gdb/Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 0590761..adad21d 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -1,4 +1,4 @@
-#Copyright 1989, 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
+# Copyright 1989, 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
# This file is part of GDB.
@@ -587,6 +587,12 @@ saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
echo "Load .c corresponding to:" $(DEPFILES)
+# A Mach 3.0 program to force gdb back to command level
+
+gdb-stop: gdb-stop.o
+ ${CC-LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o gdb-stop \
+ gdb-stop.o $(CLIBS) $(LOADLIBES)
+
# This is useful when debugging GDB, because some Unix's don't let you run GDB
# on itself without copying the executable. So "make gdb1" will make
# gdb and put a copy in gdb1, and you can run it with "gdb gdb1".