diff options
author | mistachkin <mistachkin@noemail.net> | 2007-02-04 00:10:53 (GMT) |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2007-02-04 00:10:53 (GMT) |
commit | 48a63a8ebfcd4862984d5582582f939507b751d8 (patch) | |
tree | a7200b20603fda137b889e26b614b01d8df86d05 /win/rules.vc | |
parent | f194489cf9326aef98826bc2f71b82c947275852 (diff) | |
download | tk-48a63a8ebfcd4862984d5582582f939507b751d8.zip tk-48a63a8ebfcd4862984d5582582f939507b751d8.tar.gz tk-48a63a8ebfcd4862984d5582582f939507b751d8.tar.bz2 |
see log
FossilOrigin-Name: 8cbce03e2dda7e650a52107cf217f9f01d3d70c3
Diffstat (limited to 'win/rules.vc')
-rw-r--r-- | win/rules.vc | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/win/rules.vc b/win/rules.vc index e5f59a1..496bb0a 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -11,7 +11,7 @@ # Copyright (c) 2003-2006 Patrick Thoyts # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: rules.vc,v 1.14 2006/10/31 14:45:04 patthoyts Exp $ +# RCS: @(#) $Id: rules.vc,v 1.15 2007/02/04 00:10:54 mistachkin Exp $ #------------------------------------------------------------------------------ !ifndef _RULES_VC @@ -51,12 +51,15 @@ CFG_ENCODING = \"cp1252\" !if "$(OS)" == "Windows_NT" RMDIR = rmdir /S /Q !if ![ver | find "4.0" > nul] -CPY = echo y | xcopy /i +CPY = echo y | xcopy /i >NUL +COPY = copy >NUL !else CPY = xcopy /i /y >NUL +COPY = copy /y >NUL !endif -!else -CPY = xcopy /i +!else # "$(OS)" != "Windows_NT" +CPY = xcopy /i >_JUNK.OUT # On Win98 NUL does not work here. +COPY = copy >_JUNK.OUT # On Win98 NUL does not work here. RMDIR = deltree /Y !endif MKDIR = mkdir |