summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authormdejong <mdejong>2001-09-10 00:33:09 (GMT)
committermdejong <mdejong>2001-09-10 00:33:09 (GMT)
commitbcc1ef87efd2eab7f065b4e357b890ac9efcea79 (patch)
tree4ccaad214eff686109f1f8803970c055756a1706 /win
parent160d9aa27ab287ec119b3b3f4530b6e2e50198c2 (diff)
downloadtcl-bcc1ef87efd2eab7f065b4e357b890ac9efcea79.zip
tcl-bcc1ef87efd2eab7f065b4e357b890ac9efcea79.tar.gz
tcl-bcc1ef87efd2eab7f065b4e357b890ac9efcea79.tar.bz2
* unix/Makefile.in:
* win/Makefile.in: Use () around variable name instead of {}. Use TCLTEST variable directly instead of depending on the tcltest alias.
Diffstat (limited to 'win')
-rw-r--r--win/Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 388e1f8..95ecd63 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.52 2001/09/07 02:43:12 dgp Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.53 2001/09/10 00:33:09 mdejong Exp $
VERSION = @TCL_VERSION@
@@ -535,15 +535,15 @@ test: binaries $(TCLTEST)
| ./$(CAT32)
# Useful target to launch a built tcltest with the proper path,...
-runtest: tcltest
+runtest: $(TCLTEST)
@TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \
- ./tcltest
+ ./$(TCLTEST)
# This target can be used to run tclsh from the build directory
# via `make shell SCRIPT=foo.tcl`
shell: $(TCLSH)
@TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \
- ./$(TCLSH) ${SCRIPT}
+ ./$(TCLSH) $(SCRIPT)
depend: