summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2002-09-25 02:52:06 +0000
committerKeith Seitz <keiths@redhat.com>2002-09-25 02:52:06 +0000
commita05e172cac2d89d7ce117faff50f596413dce275 (patch)
tree4958e0a9642afa8e6df0c95cc35fd4fcecd0adfc
parent995ca85c0f4c29d4636013a6e23d35c040b83478 (diff)
downloadgdb-a05e172cac2d89d7ce117faff50f596413dce275.tar.gz
remove local file
-rw-r--r--tcl/Makefile.in67
1 files changed, 0 insertions, 67 deletions
diff --git a/tcl/Makefile.in b/tcl/Makefile.in
deleted file mode 100644
index 983d674c32a..00000000000
--- a/tcl/Makefile.in
+++ /dev/null
@@ -1,67 +0,0 @@
-# Minimal top-level Makefile. Just pass everything to the $(CONFIGDIR)
-# subdir.
-# Tom Tromey <tromey@cygnus.com>
-
-CONFIGDIR=@CONFIGDIR@
-
-VPATH = @srcdir@
-SHELL = @SHELL@
-SRC_DIR = @srcdir@
-
-@SET_MAKE@
-
-all install test install-binaries install-libraries install-minimal:
- @cd $(CONFIGDIR) && $(MAKE) $@
-
-mostlyclean-recursive clean-recursive distclean-recursive \
-maintainer-clean-recursive:
- @cd $(CONFIGDIR) && $(MAKE) `echo $@ | sed 's/-recursive//'`
-
-configure:
- cd $(SRC_DIR) && autoconf
-
-mostlyclean: mostlyclean-recursive
-
-clean: clean-recursive
-
-distclean-local:
- rm -f Makefile config.status config.cache config.log
-
-distclean: distclean-recursive distclean-local
-
-maintainer-clean: distclean-local maintainer-clean-recursive
-
-
-#----------------------------------------------------------------
-# These let the DejaGnu test suite run when DejaGnu isn't
-# installed yet, so run it from the srcdir and objdir.
-#----------------------------------------------------------------
-EXPECT = ` \
- if [ -f $${rootme}/../expect/expect ] ; then \
- echo $${rootme}/../expect/expect ; \
- else echo expect ; fi`
-
-RUNTESTFLAGS =
-RUNTEST = ` \
- if [ -f $(SRC_DIR)/../dejagnu/runtest ] ; then \
- echo $(SRC_DIR)/../dejagnu/runtest ; \
- else echo runtest ; fi`
-
-check:
- cd $(CONFIGDIR) && $(MAKE) tcltest
- rootme=`pwd`; export rootme; \
- srcdir=${SRC_DIR}; export srcdir ; \
- EXPECT=${EXPECT} ; export EXPECT ; \
- if [ -f $${rootme}/../expect/expect ] ; then \
- TCL_LIBRARY=`cd $${srcdir}/library && pwd` ; \
- export TCL_LIBRARY ; fi ; \
- $(RUNTEST) $(RUNTESTFLAGS) --tool tcl --srcdir $(SRC_DIR)/testsuite
-
-install-info info installcheck:
-
-Makefile: Makefile.in config.status
- CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
-
-config.status: configure
- $(SHELL) config.status --recheck
-