diff options
author | Kevin B Kenny <kennykb@acm.org> | 2009-11-25 21:02:28 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2009-11-25 21:02:28 (GMT) |
commit | b15ddd01de0048a7f37b5195ed7c6b44504fd513 (patch) | |
tree | 525434f7c316b3d2db87dc6be98bde23575ff2f6 /win | |
parent | 9a8e3c9cf2c11e1d73b27f3d278b80390a3224e0 (diff) | |
download | tcl-b15ddd01de0048a7f37b5195ed7c6b44504fd513.zip tcl-b15ddd01de0048a7f37b5195ed7c6b44504fd513.tar.gz tcl-b15ddd01de0048a7f37b5195ed7c6b44504fd513.tar.bz2 |
* win/Makefile.in: Added a 'test-tcl' rule that is identical
to 'test' except that it does not go spelunking in 'pkgs/'. (This
rule has existed in unix/Makefile.in for some time.)
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 14208f5..f518b29 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.165 2009/11/23 20:17:36 nijtmans Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.166 2009/11/25 21:02:29 kennykb Exp $ VERSION = @TCL_VERSION@ @@ -721,7 +721,9 @@ install-private-headers: libraries # tcltest, i.e.: # % make test TESTFLAGS="-verbose bps -file fileName.test" -test: binaries $(TCLTEST) test-packages +test: test-tcl test-packages + +test-tcl: binaries $(TCLTEST) TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \ ./$(TCLTEST) "$(ROOT_DIR_NATIVE)/tests/all.tcl" $(TESTFLAGS) \ -load "set ::ddelib [file normalize ${DDE_DLL_FILE}]; \ |