diff options
author | Kevin B Kenny <kennykb@acm.org> | 2003-03-03 18:14:39 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2003-03-03 18:14:39 (GMT) |
commit | 85cce0b8cf9c49a685815514b160d47503d3c78a (patch) | |
tree | 663ba689e3de19971e5bb9212fccd4de97a4a33e /win/makefile.vc | |
parent | ff7ef382a21240c4ade4f1a8597d321eb719d988 (diff) | |
download | tcl-85cce0b8cf9c49a685815514b160d47503d3c78a.zip tcl-85cce0b8cf9c49a685815514b160d47503d3c78a.tar.gz tcl-85cce0b8cf9c49a685815514b160d47503d3c78a.tar.bz2 |
Corrected a Makefile.vc bug introduced by the change of DBGX from
d to g in rules.vc.
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index cecfab3..d37eba6 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2002 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.99 2003/01/10 15:03:54 vincentdarley Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.100 2003/03/03 18:14:39 kennykb Exp $ #------------------------------------------------------------------------------ !if "$(MSVCDIR)" == "" @@ -341,9 +341,17 @@ cflags = $(cflags) -QIA64_Bx !endif !if $(MSVCRT) -crt = -MD$(DBGX) +!if "$(DBGX)" == "" +crt = -MD !else -crt = -MT$(DBGX) +crt = -MDd +!endif +!else +!if "$(DBGX)" == "" +crt = -MT +!else +crt = -MTd +!endif !endif TCL_INCLUDES = -I"$(WINDIR)" -I"$(GENERICDIR)" |