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 | 0d721e38c420736b11e6d26b8c83debe3cc13911 (patch) | |
| tree | 663ba689e3de19971e5bb9212fccd4de97a4a33e | |
| parent | 2c450b71b7efefe0adc7d4679a84b5449ec33e4d (diff) | |
| download | tcl-0d721e38c420736b11e6d26b8c83debe3cc13911.zip tcl-0d721e38c420736b11e6d26b8c83debe3cc13911.tar.gz tcl-0d721e38c420736b11e6d26b8c83debe3cc13911.tar.bz2 | |
Corrected a Makefile.vc bug introduced by the change of DBGX from
d to g in rules.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)" |
