]> Git Repo - binutils.git/blobdiff - gdb/testsuite/Makefile.in
gdb/ChangeLog:
[binutils.git] / gdb / testsuite / Makefile.in
index 1e8f2fc6d289b1a155f9d2fe466341488984ed70..b92b91686f8dabaca83d477c5f19170bfb967cf5 100644 (file)
@@ -1,5 +1,7 @@
 # Makefile for regression testing the GNU debugger.
-# Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2002, 2003, 2004,
+# 2005
+# Free Software Foundation, Inc.
 
 # This file is part of GDB.
 
@@ -17,6 +19,7 @@
 # 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@
 prefix = @prefix@
 exec_prefix = @exec_prefix@
@@ -29,9 +32,15 @@ host_canonical = @host@
 target_canonical = @target@
 target_cpu = @gdb_target_cpu@
 
-SHELL = /bin/sh
+SHELL = @SHELL@
+EXEEXT = @EXEEXT@
 SUBDIRS = @subdirs@
 RPATH_ENVVAR = @RPATH_ENVVAR@
+ALL_SUBDIRS = gdb.ada gdb.arch gdb.asm gdb.base gdb.cp gdb.disasm \
+       gdb.dwarf2 \
+       gdb.fortran gdb.server gdb.java gdb.mi \
+       gdb.objc gdb.threads gdb.trace \
+       $(SUBDIRS)
 
 EXPECT = `if [ -f $${rootme}/../../expect/expect ] ; then \
           echo $${rootme}/../../expect/expect ; \
@@ -64,10 +73,6 @@ TARGET_FLAGS_TO_PASS = \
         'CC=$$(CC_FOR_TARGET)' \
         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
         "CFLAGS=$(TESTSUITE_CFLAGS)" \
-        "CHILLFLAGS=$(CHILLFLAGS)" \
-        'CHILL=$$(CHILL_FOR_TARGET)' \
-        "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
-        "CHILL_LIB=$(CHILL_LIB)" \
         'CXX=$$(CXX_FOR_TARGET)' \
         "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
         "CXXFLAGS=$(CXXFLAGS)" \
@@ -88,6 +93,8 @@ INFODIRS=doc
 info:
 install-info:
 dvi:
+html:
+install-html:
 
 install:
 
@@ -122,7 +129,8 @@ just-check:
        rootme=`pwd`; export rootme; \
        srcdir=${srcdir} ; export srcdir ; \
        EXPECT=${EXPECT} ; export EXPECT ; \
-        $(RPATH_ENVVAR)=$$rootme/../../libstdc++:$$rootme/../../tk/unix:$$rootme/../../tcl/unix:$$rootme/../../bfd:$$rootme/../../opcodes:$$$(RPATH_ENVVAR); \
+       EXEEXT=${EXEEXT} ; export EXEEXT ; \
+        $(RPATH_ENVVAR)=$$rootme/../../expect:$$rootme/../../libstdc++:$$rootme/../../tk/unix:$$rootme/../../tcl/unix:$$rootme/../../bfd:$$rootme/../../opcodes:$$$(RPATH_ENVVAR); \
        export $(RPATH_ENVVAR); \
        if [ -f $${rootme}/../../expect/expect ] ; then  \
          TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
@@ -143,7 +151,7 @@ subdir_do: force
 force:;
 
 subdirs:
-       for dir in ${SUBDIRS} ; \
+       for dir in ${ALL_SUBDIRS} ; \
        do \
                echo "$$dir:" ; \
                if [ -d $$dir ] ; then \
@@ -154,9 +162,9 @@ subdirs:
        done
 
 clean mostlyclean:
-       -rm -f *~ core *.o a.out xgdb *.x
-       if [ x"${SUBDIRS}" != x ] ; then \
-           for dir in ${SUBDIRS}; \
+       -rm -f *~ core *.o a.out xgdb *.x *.grt
+       if [ x"${ALL_SUBDIRS}" != x ] ; then \
+           for dir in ${ALL_SUBDIRS}; \
            do \
                    echo "$$dir:"; \
                    if [ -d $$dir ]; then \
@@ -166,11 +174,11 @@ clean mostlyclean:
        else true; fi
 
 distclean maintainer-clean realclean: clean
-       -rm -f *~ core *.log *.plog *.sum *.psum site.*
+       -rm -f *~ core
        -rm -f Makefile config.status *-init.exp
        -rm -fr *.log summary detail *.plog *.sum *.psum site.*
-       if [ x"${SUBDIRS}" != x ] ; then \
-           for dir in ${SUBDIRS}; \
+       if [ x"${ALL_SUBDIRS}" != x ] ; then \
+           for dir in ${ALL_SUBDIRS}; \
            do \
                    echo "$$dir:"; \
                    if [ -d $$dir ]; then \
@@ -179,5 +187,8 @@ distclean maintainer-clean realclean: clean
            done ; \
        else true; fi
 
-Makefile : $(srcdir)/Makefile.in $(srcdir)/configure.in $(host_makefile_frag) $(target_makefile_frag)
-       $(SHELL) ./config.status
+Makefile : Makefile.in config.status $(host_makefile_frag) $(target_makefile_frag)
+       $(SHELL) config.status
+
+config.status: configure
+       $(SHELL) config.status --recheck
This page took 0.028175 seconds and 4 git commands to generate.