From 85cce0b8cf9c49a685815514b160d47503d3c78a Mon Sep 17 00:00:00 2001 From: Kevin B Kenny Date: Mon, 3 Mar 2003 18:14:39 +0000 Subject: Corrected a Makefile.vc bug introduced by the change of DBGX from d to g in rules.vc. --- win/makefile.vc | 14 +++++++++++--- 1 file 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)" -- cgit v0.12