diff options
author | hobbs <hobbs> | 2000-09-29 21:40:53 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-09-29 21:40:53 (GMT) |
commit | 8432fe13edf65bc1a15b64fc6cff20397391e9fe (patch) | |
tree | afb58f3a6afd136e4686e9bc42cf6413d3877d5b /win/Makefile.in | |
parent | 95fc05c4b143e413f10ddc9cb14e4d322cca5e94 (diff) | |
download | tk-8432fe13edf65bc1a15b64fc6cff20397391e9fe.zip tk-8432fe13edf65bc1a15b64fc6cff20397391e9fe.tar.gz tk-8432fe13edf65bc1a15b64fc6cff20397391e9fe.tar.bz2 |
* win/Makefile.in: commented use of TESTFLAGS
* unix/Makefile.in: added TESTFLAGS to test and testlang targets to
conform with Windows makefile and TEA style.
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index cee6a9d..38c2455 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.30 2000/09/02 01:18:24 ericm Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.31 2000/09/29 21:40:54 hobbs Exp $ TCLVERSION = @TCL_VERSION@ VERSION = @TK_VERSION@ @@ -380,6 +380,10 @@ winhelp: $(TCL_SRC_DIR_NATIVE)/../tools/man2help.tcl $(MAN2TCL) $(MAN2TCL): $(TCL_SRC_DIR_NATIVE)/../tools/man2tcl.c $(CC) $(CFLAGS_OPTIMIZE) $(MAN2TCLFLAGS) -o $(MAN2TCL) "$(TCL_SRC_DIR_NATIVE)"/../tools/man2tcl.c +# Specifying TESTFLAGS on the command line is the standard way to pass +# args to tcltest, ie: +# % make test TESTFLAGS="-verbose bps -file fileName.test" + test: binaries $(TKTEST) @TCL_LIBRARY="$(TCL_SRC_DIR_NATIVE)/../library"; export TCL_LIBRARY; \ TK_LIBRARY="$(ROOT_DIR_NATIVE)/library"; export TK_LIBRARY; \ |