From f8cc5c612ec542960df0039218f013d6fdf378ae Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Thu, 13 Feb 1997 23:20:09 +0000 Subject: [PATCH] * gdb.stabs/*.mt; Deleted, no longer used. * gdb.stabs/configure.in: Remove references to target makefile frags. * gdb.stabs/configure: Rebuilt. Removing more crud. --- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/gdb.stabs/alpha.mt | 6 ------ gdb/testsuite/gdb.stabs/aout.mt | 3 --- gdb/testsuite/gdb.stabs/configure.in | 30 ------------------------------ gdb/testsuite/gdb.stabs/default.mt | 2 -- gdb/testsuite/gdb.stabs/ecoff.mt | 7 ------- gdb/testsuite/gdb.stabs/hppa.mt | 12 ------------ gdb/testsuite/gdb.stabs/xcoff.mt | 3 --- 8 files changed, 5 insertions(+), 63 deletions(-) delete mode 100644 gdb/testsuite/gdb.stabs/alpha.mt delete mode 100644 gdb/testsuite/gdb.stabs/aout.mt delete mode 100644 gdb/testsuite/gdb.stabs/default.mt delete mode 100644 gdb/testsuite/gdb.stabs/ecoff.mt delete mode 100644 gdb/testsuite/gdb.stabs/hppa.mt delete mode 100644 gdb/testsuite/gdb.stabs/xcoff.mt diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index e529804..c319e6f 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ Thu Feb 13 16:09:36 1997 Jeffrey A Law (law@cygnus.com) + * gdb.stabs/*.mt; Deleted, no longer used. + * gdb.stabs/configure.in: Remove references to target makefile + frags. + * gdb.stabs/configure: Rebuilt. + * gdb.disasm/*.mt: Deleted, no longer used. * gdb.disasm/configure.in: Remove references to target makefile frags. Use "sh3.s" as the unique filename for this directory. diff --git a/gdb/testsuite/gdb.stabs/alpha.mt b/gdb/testsuite/gdb.stabs/alpha.mt deleted file mode 100644 index 76f4baa..0000000 --- a/gdb/testsuite/gdb.stabs/alpha.mt +++ /dev/null @@ -1,6 +0,0 @@ -# This configuration is for a gcc that uses mips-tfile. If your gcc -# uses gas, you should configure gdb --with-gnu-as. -# -weird.o: $(srcdir)/weird.def $(srcdir)/ecoff.sed - sed -f $(srcdir)/ecoff.sed <$(srcdir)/weird.def >weird.s - $(CC) $(CFLAGS) -c weird.s diff --git a/gdb/testsuite/gdb.stabs/aout.mt b/gdb/testsuite/gdb.stabs/aout.mt deleted file mode 100644 index 1648ae5..0000000 --- a/gdb/testsuite/gdb.stabs/aout.mt +++ /dev/null @@ -1,3 +0,0 @@ -weird.o: $(srcdir)/weird.def $(srcdir)/aout.sed - sed -f $(srcdir)/aout.sed <$(srcdir)/weird.def >weird.s - $(CC) -c weird.s diff --git a/gdb/testsuite/gdb.stabs/configure.in b/gdb/testsuite/gdb.stabs/configure.in index 16c3f5d..aa49426 100644 --- a/gdb/testsuite/gdb.stabs/configure.in +++ b/gdb/testsuite/gdb.stabs/configure.in @@ -12,34 +12,4 @@ AC_SUBST(CC) AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../../..) AC_CANONICAL_SYSTEM -case "${target}" in - -# Do any other machines use .stabx? What about i386-*-aix*? -rs6000-*-aix*) target_makefile_frag=xcoff.mt ;; - -alpha-*-*) if test "x${with_gnu_as}" = xyes ; then - target_makefile_frag=aout.mt - else - target_makefile_frag=alpha.mt - fi - ;; - -hppa*-*-*) target_makefile_frag=hppa.mt ;; - -mips-*-bsd*) target_makefile_frag=aout.mt ;; -mips-*-*) if test "x${with_gnu_as}" = xyes ; then - target_makefile_frag=aout.mt - else - target_makefile_frag=ecoff.mt - fi - ;; - -*-*-*) target_makefile_frag=aout.mt ;; - -esac - -# We also need to use a makefile fragment for the embedded targets -# to get the flags right to build the test cases -AC_SUBST_FILE(target_makefile_frag) - AC_OUTPUT(Makefile) diff --git a/gdb/testsuite/gdb.stabs/default.mt b/gdb/testsuite/gdb.stabs/default.mt deleted file mode 100644 index 7afdac2..0000000 --- a/gdb/testsuite/gdb.stabs/default.mt +++ /dev/null @@ -1,2 +0,0 @@ -# No special makefile support needed for this target. - diff --git a/gdb/testsuite/gdb.stabs/ecoff.mt b/gdb/testsuite/gdb.stabs/ecoff.mt deleted file mode 100644 index 57e7f18..0000000 --- a/gdb/testsuite/gdb.stabs/ecoff.mt +++ /dev/null @@ -1,7 +0,0 @@ -# This configuration is for a gcc that uses mips-tfile. If your gcc -# uses gas, you should configure gdb --with-gnu-as. -# -weird.o: $(srcdir)/weird.def $(srcdir)/ecoff.sed - sed <$(srcdir)/weird.def -e 's/.long/.word/' | \ - sed -f $(srcdir)/ecoff.sed >weird.s - $(CC) -c weird.s diff --git a/gdb/testsuite/gdb.stabs/hppa.mt b/gdb/testsuite/gdb.stabs/hppa.mt deleted file mode 100644 index 32a09ca..0000000 --- a/gdb/testsuite/gdb.stabs/hppa.mt +++ /dev/null @@ -1,12 +0,0 @@ -weird.o: $(srcdir)/weird.def $(srcdir)/hppa.sed - sed -f $(srcdir)/hppa.sed <$(srcdir)/weird.def >weird.s - if $(CC) -c weird.s 2>errs; then \ - true; \ - else \ - if grep 'Directive name not recognized - STABS' errs \ - >/dev/null; then \ - echo HP assembler in use--skipping stabs tests; true; \ - else \ - cat errs; false; \ - fi; \ - fi diff --git a/gdb/testsuite/gdb.stabs/xcoff.mt b/gdb/testsuite/gdb.stabs/xcoff.mt deleted file mode 100644 index 85ef9bb..0000000 --- a/gdb/testsuite/gdb.stabs/xcoff.mt +++ /dev/null @@ -1,3 +0,0 @@ -weird.o: $(srcdir)/weird.def $(srcdir)/xcoff.sed - sed -f $(srcdir)/xcoff.sed <$(srcdir)/weird.def >weird.s - $(CC) -c weird.s -- 2.7.4