comparison src/Make_mvc.mak @ 1668:0b796e045c42 v7.2b.000

updated for version 7.2b-000
author vimboss
date Sun, 13 Jul 2008 17:41:49 +0000
parents b9740fb41986
children c7c53db66b55
comparison
equal deleted inserted replaced
1667:131dbd3d2a4b 1668:0b796e045c42
191 !else # !PROCESSOR_ARCHITECTURE 191 !else # !PROCESSOR_ARCHITECTURE
192 # We're on Windows 95 192 # We're on Windows 95
193 CPU = i386 193 CPU = i386
194 !endif # !PROCESSOR_ARCHITECTURE 194 !endif # !PROCESSOR_ARCHITECTURE
195 195
196 !if ("$(CPU)" == "AMD64") || ("$(CPU)" == "IA64")
197 DEFINES=$(DEFINES) /Wp64
198 !endif
199
200 # Build a retail version by default 196 # Build a retail version by default
201 197
202 !if "$(DEBUG)" != "yes" 198 !if "$(DEBUG)" != "yes"
203 NODEBUG = 1 199 NODEBUG = 1
204 !else 200 !else
209 205
210 # Get all sorts of useful, standard macros from the Platform SDK. 206 # Get all sorts of useful, standard macros from the Platform SDK.
211 207
212 !include <Win32.mak> 208 !include <Win32.mak>
213 209
210 # Turn on Win64 compatibility warnings for 32-bit compiler in VC8. (/Wp64 is
211 # deprecated in VC9.)
212 !if ("$(MSVCVER)" == "8.0")
213 DEFINES=$(DEFINES) /Wp64
214 !endif
214 215
215 #>>>>> path of the compiler and linker; name of include and lib directories 216 #>>>>> path of the compiler and linker; name of include and lib directories
216 # PATH = c:\msvc20\bin;$(PATH) 217 # PATH = c:\msvc20\bin;$(PATH)
217 # INCLUDE = c:\msvc20\include 218 # INCLUDE = c:\msvc20\include
218 # LIB = c:\msvc20\lib 219 # LIB = c:\msvc20\lib