summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authorpatthoyts@users.sourceforge.net <patthoyts>2004-09-06 13:45:29 (GMT)
committerpatthoyts@users.sourceforge.net <patthoyts>2004-09-06 13:45:29 (GMT)
commit19c5f1a22fd8442661a40dfde86711022b3e45b7 (patch)
tree28ff7550436c9939bad7ecaaee4588a8f9025553 /win/makefile.vc
parentd711da9aaf076048852a87db5042f5dbe050e45d (diff)
downloadtk-19c5f1a22fd8442661a40dfde86711022b3e45b7.zip
tk-19c5f1a22fd8442661a40dfde86711022b3e45b7.tar.gz
tk-19c5f1a22fd8442661a40dfde86711022b3e45b7.tar.bz2
Set TK_LIBRARY when execing Tk apps (test, runtest, rundemo).
Diffstat (limited to 'win/makefile.vc')
-rw-r--r--win/makefile.vc5
1 files changed, 4 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 2563282..7000f9e 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -12,7 +12,7 @@
# Copyright (c) 2001-2004 David Gravereaux.
#
#------------------------------------------------------------------------------
-# RCS: @(#) $Id: makefile.vc,v 1.83 2004/03/09 03:35:08 davygrvy Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.84 2004/09/06 13:45:37 patthoyts Exp $
#------------------------------------------------------------------------------
!if "$(MSDEVDIR)" == ""
@@ -485,6 +485,7 @@ tktest: setup $(TKTEST) $(CAT32)
test: setup $(TKTEST) $(TKLIB) $(CAT32)
set TCL_LIBRARY=$(TCL_LIBRARY)
+ set TK_LIBRARY=$(ROOT)/library
!if $(TCLINSTALL)
set PATH=$(_TCLDIR)\bin;$(PATH)
!else
@@ -498,6 +499,7 @@ test: setup $(TKTEST) $(TKLIB) $(CAT32)
runtest: setup $(TKTEST) $(TKLIB) $(CAT32)
set TCL_LIBRARY=$(TCL_LIBRARY)
+ set TK_LIBRARY=$(ROOT)/library
!if $(TCLINSTALL)
set PATH=$(_TCLDIR)\bin;$(PATH)
!else
@@ -507,6 +509,7 @@ runtest: setup $(TKTEST) $(TKLIB) $(CAT32)
rundemo: setup $(TKTEST) $(TKLIB) $(CAT32)
set TCL_LIBRARY=$(TCL_LIBRARY)
+ set TK_LIBRARY=$(ROOT)/library
!if $(TCLINSTALL)
set PATH=$(_TCLDIR)\bin;$(PATH)
!else