diff options
author | hobbs <hobbs@noemail.net> | 2002-04-23 00:20:08 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2002-04-23 00:20:08 (GMT) |
commit | b3ae2119c1ca993f2e8c7e7b787c3c79c9b574a0 (patch) | |
tree | a182274a723d0c4f6545e8ea5111c093c45e144d /win/Makefile.in | |
parent | 596b1a1156a50a9f84eae46fcbf179fdc4ef1aff (diff) | |
download | tk-b3ae2119c1ca993f2e8c7e7b787c3c79c9b574a0.zip tk-b3ae2119c1ca993f2e8c7e7b787c3c79c9b574a0.tar.gz tk-b3ae2119c1ca993f2e8c7e7b787c3c79c9b574a0.tar.bz2 |
corrected runtest target dependencies
FossilOrigin-Name: 7ebd909a179a349a7a98bf3d9137c81a256b0eb7
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index e2d5ddf..7e191bb 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.49 2002/04/05 08:41:59 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.50 2002/04/23 00:20:08 hobbs Exp $ TCLVERSION = @TCL_VERSION@ VERSION = @TK_VERSION@ @@ -392,11 +392,11 @@ test: binaries $(TKTEST) ./$(TKTEST) "$(ROOT_DIR_NATIVE)/tests/all.tcl" $(TESTFLAGS) \ | ./$(CAT32) -runtest: $(TKTEST) +runtest: binaries $(TKTEST) @TCL_LIBRARY="$(TCL_SRC_DIR_NATIVE)/library"; export TCL_LIBRARY; \ TK_LIBRARY="$(ROOT_DIR_NATIVE)/library"; export TK_LIBRARY; \ PATH="$(PATH):$(TCL_BIN_DIR)"; export PATH; \ - ./$(TKTEST) + ./$(TKTEST) $(TESTFLAGS) $(SCRIPT) # This target can be used to run wish from the build directory # via `make shell` or `make shell SCRIPT=foo.tcl` |