diff options
author | wart <wart@noemail.net> | 1999-11-12 23:54:21 (GMT) |
---|---|---|
committer | wart <wart@noemail.net> | 1999-11-12 23:54:21 (GMT) |
commit | b7178a6eca0f3c5600d4132b30de93cba6a0d866 (patch) | |
tree | 75e360252d6c0ae30d8296c0ef6fd8287e469c28 /unix/Makefile.in | |
parent | 2291938382827b259f82e24c689acdc435481c34 (diff) | |
download | tk-b7178a6eca0f3c5600d4132b30de93cba6a0d866.zip tk-b7178a6eca0f3c5600d4132b30de93cba6a0d866.tar.gz tk-b7178a6eca0f3c5600d4132b30de93cba6a0d866.tar.bz2 |
Added $(TCLTESTARGS) to the test target so that users can set additional
test harness arguments on the make command line:
% make test TCLTESTARGS="-verbose pbs"
FossilOrigin-Name: 6542142a2080b55bf8f594ab42c59304c25084fc
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 8bc0487..2faa271 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.33 1999/10/20 01:02:34 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.34 1999/11/12 23:54:22 wart Exp $ # Current Tk version; used in various names. @@ -406,7 +406,7 @@ test: tktest export SHLIB_PATH; \ TCL_LIBRARY=@TCL_SRC_DIR@/library; export TCL_LIBRARY; \ TK_LIBRARY=@TK_SRC_DIR@/library; export TK_LIBRARY; \ - ./tktest $(TOP_DIR)/tests/all.tcl -geometry +0+0 + ./tktest $(TOP_DIR)/tests/all.tcl -geometry +0+0 $(TCLTESTARGS) # Useful target to launch a built tktest with the proper path,... runtest: |