From bcc1ef87efd2eab7f065b4e357b890ac9efcea79 Mon Sep 17 00:00:00 2001 From: mdejong Date: Mon, 10 Sep 2001 00:33:09 +0000 Subject: * unix/Makefile.in: * win/Makefile.in: Use () around variable name instead of {}. Use TCLTEST variable directly instead of depending on the tcltest alias. --- ChangeLog | 7 +++++++ unix/Makefile.in | 4 ++-- win/Makefile.in | 8 ++++---- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5069baf..1ed1ed9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2001-09-09 Mo DeJong + + * unix/Makefile.in: + * win/Makefile.in: Use () around variable name + instead of {}. Use TCLTEST variable directly + instead of depending on the tcltest alias. + 2001-09-09 David Gravereaux * generic/tcl.h: diff --git a/unix/Makefile.in b/unix/Makefile.in index ae9bee8..31ae68e 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.82 2001/09/07 02:43:12 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.83 2001/09/10 00:33:09 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -472,7 +472,7 @@ shell: tclsh LIBPATH=`pwd`:${LIBPATH}; export LIBPATH; \ SHLIB_PATH=`pwd`:${SHLIB_PATH}; export SHLIB_PATH; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ - ./tclsh ${SCRIPT} + ./tclsh $(SCRIPT) # The following target outputs the name of the top-level source directory # for Tcl (it is used by Tk's configure script, for example). The diff --git a/win/Makefile.in b/win/Makefile.in index 388e1f8..95ecd63 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.52 2001/09/07 02:43:12 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.53 2001/09/10 00:33:09 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -535,15 +535,15 @@ test: binaries $(TCLTEST) | ./$(CAT32) # Useful target to launch a built tcltest with the proper path,... -runtest: tcltest +runtest: $(TCLTEST) @TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \ - ./tcltest + ./$(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} + ./$(TCLSH) $(SCRIPT) depend: -- cgit v0.12