summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2002-04-22 22:42:37 (GMT)
committerhobbs <hobbs>2002-04-22 22:42:37 (GMT)
commitf26bbe250fda8cf6b04b7faa5db840b95fff4e14 (patch)
treed98a1aa570ffaeb41e64a4f23da618c8a171bfa3
parentae8818e783ef033c3aace0b9b7cb1cc4c8b68ae0 (diff)
downloadtcl-f26bbe250fda8cf6b04b7faa5db840b95fff4e14.zip
tcl-f26bbe250fda8cf6b04b7faa5db840b95fff4e14.tar.gz
tcl-f26bbe250fda8cf6b04b7faa5db840b95fff4e14.tar.bz2
* win/Makefile.in: correct dependencies for shell, gdb, runtest
targets.
-rw-r--r--win/Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 7e1eead..56082fc 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.59 2002/02/15 14:28:51 dkf Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.60 2002/04/22 22:42:37 hobbs Exp $
VERSION = @TCL_VERSION@
@@ -546,18 +546,18 @@ test: binaries $(TCLTEST)
| ./$(CAT32)
# Useful target to launch a built tcltest with the proper path,...
-runtest: $(TCLTEST)
+runtest: binaries $(TCLTEST)
@TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \
- ./$(TCLTEST)
+ ./$(TCLTEST) $(TESTFLAGS) $(SCRIPT)
# This target can be used to run tclsh from the build directory
# via `make shell SCRIPT=foo.tcl`
-shell: $(TCLSH)
+shell: binaries
@TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \
- ./$(TCLSH) $(SCRIPT)
+ ./$(TCLSH) $(SCRIPT)
# This target can be used to run tclsh inside either gdb or insight
-gdb: $(TCLSH)
+gdb: binaries
@echo "set env TCL_LIBRARY=$(LIBRARY_DIR)" > gdb.run
gdb ./tclsh --command=gdb.run
rm gdb.run