diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2006-09-11 21:24:38 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2006-09-11 21:24:38 (GMT) |
commit | eb3be6eb98ba5f288e41d8f1aaa60decfd69a530 (patch) | |
tree | f818fb2fca43a0682e545d4056d60c56c57ec09b /win/rules.vc | |
parent | 3942b2c3f68cd403c522c931756562212d032a04 (diff) | |
download | tcl-eb3be6eb98ba5f288e41d8f1aaa60decfd69a530.zip tcl-eb3be6eb98ba5f288e41d8f1aaa60decfd69a530.tar.gz tcl-eb3be6eb98ba5f288e41d8f1aaa60decfd69a530.tar.bz2 |
Updated to install http, tcltest and msgcat as Tcl Modules (as per Makefile.in).
Diffstat (limited to 'win/rules.vc')
-rw-r--r-- | win/rules.vc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/win/rules.vc b/win/rules.vc index 6c595bc..68e490d 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -10,7 +10,7 @@ # Copyright (c) 2001-2003 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: rules.vc,v 1.22 2005/11/03 00:17:31 patthoyts Exp $ +# RCS: @(#) $Id: rules.vc,v 1.23 2006/09/11 21:24:38 patthoyts Exp $ #------------------------------------------------------------------------------ !ifndef _RULES_VC @@ -48,13 +48,14 @@ RMDIR = rmdir /S /Q !if ![ver | find "4.0" > nul] CPY = echo y | xcopy /i !else -CPY = xcopy /i /y +CPY = xcopy /i /y >NUL !endif !else CPY = xcopy /i RMDIR = deltree /Y !endif - +MKDIR = mkdir +COPY = copy /y >NUL !message =============================================================================== @@ -365,7 +366,7 @@ OPTDEFINES = $(OPTDEFINES) -DTCL_CFG_OPTIMIZED !if $(PROFILE) OPTDEFINES = $(OPTDEFINES) -DTCL_CFG_PROFILED !endif -!if "$(MACHINE)" == "IA64" +!if "$(MACHINE)" == "IA64" || "$(MACHINE)" == "AMD64" OPTDEFINES = $(OPTDEFINES) -DTCL_CFG_DO64BIT !endif |