diff options
author | mdejong <mdejong> | 2001-06-27 01:53:18 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-06-27 01:53:18 (GMT) |
commit | 544207080e881b8c182ab52bd14cf6988a7e22d1 (patch) | |
tree | 8f62724c052c4b21e0996ff6f523b09144eba78a /win | |
parent | effafed363f9f283c32c0006ee0d244e84a57797 (diff) | |
download | tcl-544207080e881b8c182ab52bd14cf6988a7e22d1.zip tcl-544207080e881b8c182ab52bd14cf6988a7e22d1.tar.gz tcl-544207080e881b8c182ab52bd14cf6988a7e22d1.tar.bz2 |
* unix/Makefile.in:
* win/Makefile.in: Add `make shell` target. This target
will set the proper env vars before invoking tclsh
from the build directory.
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 0354bcb..1f9ee81 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.46 2001/06/27 01:06:12 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.47 2001/06/27 01:53:18 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -540,6 +540,12 @@ runtest: tcltest @TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \ ./tcltest +# This target can be used to run tclsh from the build directory +# via `make shell SCRIPT=foo.tcl` +shell: $(TCLSH) + @TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \ + ./$(TCLSH) ${SCRIPT} + depend: Makefile: $(SRC_DIR)/Makefile.in |