]> git.saurik.com Git - wxWidgets.git/blobdiff - src/makevc.env
Symantec makefile fixes (for OLE files)
[wxWidgets.git] / src / makevc.env
index 454960f2641bbc3e7e9914402a3810a1f2dedbbe..3ec3459411e3465713cda4ebfbd98bd0a1749e3e 100644 (file)
@@ -8,7 +8,7 @@
 #
 !include <ntwin32.mak>
 
-WXVERSION=21b9
+WXVERSION=21b10
 WIN95=1
 
 !if "$(WIN95)" == "0"
@@ -150,14 +150,18 @@ OPT = /Od /Gy
 # ***N.B.*** to save space/time, comment out /FR to avoid browse info (.sbr files) being generated
 DEBUG_FLAGS= /Zi /D__WXDEBUG__ # /DDEBUG=1 # /FR
 LINK_DEBUG_FLAGS=-debug:full -debugtype:cv # /PDB:NONE
-CRTFLAG=/MD
+_CRTFLAG=/MDd
 !else
 # /O1 - smallest code
 # /O2 - fastest code
 OPT = /O1 # /O2 # /Od
 DEBUG_FLAGS=
 LINK_DEBUG_FLAGS=/RELEASE
-CRTFLAG=/MD
+_CRTFLAG=/MD
+!endif
+
+!if "$(CRTFLAG)" == ""
+CRTFLAG=$(_CRTFLAG)
 !endif
 
 !if "$(DLL)" == "0"