diff options
author | hobbs <hobbs> | 2002-04-22 22:42:37 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-04-22 22:42:37 (GMT) |
commit | f26bbe250fda8cf6b04b7faa5db840b95fff4e14 (patch) | |
tree | d98a1aa570ffaeb41e64a4f23da618c8a171bfa3 /win | |
parent | ae8818e783ef033c3aace0b9b7cb1cc4c8b68ae0 (diff) | |
download | tcl-f26bbe250fda8cf6b04b7faa5db840b95fff4e14.zip tcl-f26bbe250fda8cf6b04b7faa5db840b95fff4e14.tar.gz tcl-f26bbe250fda8cf6b04b7faa5db840b95fff4e14.tar.bz2 |
* win/Makefile.in: correct dependencies for shell, gdb, runtest
targets.
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 7e1eead..56082fc 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.59 2002/02/15 14:28:51 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.60 2002/04/22 22:42:37 hobbs Exp $ VERSION = @TCL_VERSION@ @@ -546,18 +546,18 @@ test: binaries $(TCLTEST) | ./$(CAT32) # Useful target to launch a built tcltest with the proper path,... -runtest: $(TCLTEST) +runtest: binaries $(TCLTEST) @TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \ - ./$(TCLTEST) + ./$(TCLTEST) $(TESTFLAGS) $(SCRIPT) # This target can be used to run tclsh from the build directory # via `make shell SCRIPT=foo.tcl` -shell: $(TCLSH) +shell: binaries @TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \ - ./$(TCLSH) $(SCRIPT) + ./$(TCLSH) $(SCRIPT) # This target can be used to run tclsh inside either gdb or insight -gdb: $(TCLSH) +gdb: binaries @echo "set env TCL_LIBRARY=$(LIBRARY_DIR)" > gdb.run gdb ./tclsh --command=gdb.run rm gdb.run |