diff options
author | Michael Chastain <mec@google.com> | 2004-08-17 16:33:28 +0000 |
---|---|---|
committer | Michael Chastain <mec@google.com> | 2004-08-17 16:33:28 +0000 |
commit | 89a237cb65fe5a517e8c88fcc274c70c2db4b27c (patch) | |
tree | ba6f70de91c3792bf122c13c84416f37e48e400e /gdb/testsuite/gdb.fortran | |
parent | 10ca0e95433b6f43524569a77d6d6e30993a937d (diff) | |
download | gdb-89a237cb65fe5a517e8c88fcc274c70c2db4b27c.zip gdb-89a237cb65fe5a517e8c88fcc274c70c2db4b27c.tar.gz gdb-89a237cb65fe5a517e8c88fcc274c70c2db4b27c.tar.bz2 |
2004-08-17 Michael Chastain <mec.gnu@mindspring.com>
* configure.in: Add gdb.fortran.
* configure: Regenerate.
* gdb.fortran/Makefile.in: New file.
* lib/gdb.exp (skip_fortran_tests): New procedure.
Diffstat (limited to 'gdb/testsuite/gdb.fortran')
-rw-r--r-- | gdb/testsuite/gdb.fortran/Makefile.in | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.fortran/Makefile.in b/gdb/testsuite/gdb.fortran/Makefile.in new file mode 100644 index 0000000..a1c3b07 --- /dev/null +++ b/gdb/testsuite/gdb.fortran/Makefile.in @@ -0,0 +1,34 @@ +# Makefile for regression testing the GNU debugger. +# Copyright 1992, 1993, 1994, 1995, 1996, 1999, 2001, 2003, 2004 +# Free Software Foundation, Inc. + +# This file is part of GDB. + +# GDB is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# GDB is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +VPATH = @srcdir@ +srcdir = @srcdir@ + +EXECUTABLES = + +all info install-info dvi install uninstall installcheck check: + @echo "Nothing to be done for $@..." + +clean mostlyclean: + -rm -f *~ *.o *.ci + -rm -f core ${EXECUTABLES} + +distclean maintainer-clean realclean: clean + -rm -f Makefile config.status config.log |