summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
Diffstat (limited to 'win/makefile.vc')
-rw-r--r--win/makefile.vc11
1 files changed, 3 insertions, 8 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 34aea15..71cb3aa 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.88 2002/03/29 22:09:35 davygrvy Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.89 2002/03/29 22:29:26 davygrvy Exp $
#------------------------------------------------------------------------------
!if "$(MSVCDIR)" == ""
@@ -344,15 +344,10 @@ crt = -MD$(DBGX)
crt = -MT$(DBGX)
!endif
+TCL_INCLUDES = -I"$(WINDIR)" -I"$(GENERICDIR)"
BASE_CLFAGS = $(cflags) $(cdebug) $(crt) $(TCL_INCLUDES)
CON_CFLAGS = $(cflags) $(cdebug) $(crt) -DCONSOLE
-TCL_INCLUDES = -I"$(WINDIR)" -I"$(GENERICDIR)"
-
-!if $(STATIC_BUILD)
-TCL_CFLAGS = $(BASE_CLFAGS) -DSTATIC_BUILD
-!else
-TCL_CFLAGS = $(BASE_CLFAGS)
-!endif
+TCL_CFLAGS = $(BASE_CLFAGS) $(OPTDEFINES)
#---------------------------------------------------------------------