diff options
author | wart <wart> | 1999-11-12 23:54:22 (GMT) |
---|---|---|
committer | wart <wart> | 1999-11-12 23:54:22 (GMT) |
commit | f26d87ff6dc4002600ced51b9c7bbb66b1d6f8df (patch) | |
tree | 75e360252d6c0ae30d8296c0ef6fd8287e469c28 /unix | |
parent | c0bef5bd33ea453a9deb09af18deb2ba263b4e5b (diff) | |
download | tk-f26d87ff6dc4002600ced51b9c7bbb66b1d6f8df.zip tk-f26d87ff6dc4002600ced51b9c7bbb66b1d6f8df.tar.gz tk-f26d87ff6dc4002600ced51b9c7bbb66b1d6f8df.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"
Diffstat (limited to 'unix')
-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: |