diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1995-02-16 18:41:54 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1995-02-16 18:41:54 +0000 |
commit | 65424cda041d48a03284ca76c30483d9d80c6ad5 (patch) | |
tree | 83411e7664cdf4efd96d13c5ac7733a0b64ea361 /gdb/testsuite/gdb.chill | |
parent | fe46552d89cc45d54303ffe25d71a78f76c5402b (diff) | |
download | gdb-65424cda041d48a03284ca76c30483d9d80c6ad5.zip gdb-65424cda041d48a03284ca76c30483d9d80c6ad5.tar.gz gdb-65424cda041d48a03284ca76c30483d9d80c6ad5.tar.bz2 |
* Makefile.in, gdb.{base,c++,chill}/Makefile.in (GDB, GDBFLAGS):
Removed, these values are set by lib/gdb.exp.
* lib/gdb.exp: If GDBFLAGS is unset, set it to -nx.
Diffstat (limited to 'gdb/testsuite/gdb.chill')
-rw-r--r-- | gdb/testsuite/gdb.chill/Makefile.in | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/gdb/testsuite/gdb.chill/Makefile.in b/gdb/testsuite/gdb.chill/Makefile.in index eb9dec4..8b39583 100644 --- a/gdb/testsuite/gdb.chill/Makefile.in +++ b/gdb/testsuite/gdb.chill/Makefile.in @@ -1,5 +1,5 @@ # Makefile for regression testing Chill support for the GNU debugger. -# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. +# Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. # This file is part of GDB. @@ -92,19 +92,6 @@ CHILL_LIB = ` \ echo -lchill; \ fi` -GDB = ` \ - if [ -f $${rootme}/../../gdb ] ; then \ - echo $${rootme}/../../gdb ; \ - else \ - if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ - echo gdb; \ - else \ - t='$(program_transform_name)'; echo gdb | sed -e '' $$t; \ - fi; \ - fi` - -GDBFLAGS = -nx - #### host, target, and site specific Makefile frags come in here. EXECUTABLES = chillvars.exe result.exe tuples.exe \ @@ -132,7 +119,7 @@ pr-5646.o: pr-5646-grt.o rootme=`pwd`/; export rootme; \ cd .. ; \ $(MAKE) just-check RUNTESTFLAGS="${RUNTESTFLAGS} $*.exp" \ - GDB=${GDB} EXPECT=${EXPECT} + EXPECT=${EXPECT} .NOEXPORT: INFODIRS=doc @@ -152,7 +139,6 @@ site.exp: ./config.status Makefile @echo "## these variables are automatically generated by make ##" > ./tmp0 @echo "# Do not edit here. If you wish to override these values" >> ./tmp0 @echo "# add them to the last section" >> ./tmp0 - @echo "set GDBFLAGS \"${GDBFLAGS}\"" >> ./tmp0 @echo "set host_os ${host_os}" >> ./tmp0 @echo "set host_alias ${host_alias}" >> ./tmp0 @echo "set host_cpu ${host_cpu}" >> ./tmp0 @@ -179,7 +165,7 @@ just-check: rootme=`pwd`/; export rootme; \ cd .. ; \ $(MAKE) just-check RUNTESTFLAGS="${RUNTESTFLAGS} $${tests}" \ - GDB=${GDB} EXPECT=${EXPECT} + EXPECT=${EXPECT} clean mostlyclean: -rm -f *~ core *.o a.out xgdb *.x $(EXECUTABLES) |