#
# !!!! After changing features do "nmake clean" first !!!!
#
-# Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG)
+# Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG)
#
# GUI interface: GUI=yes (default is no)
#
# GETTEXT=[yes or no] (default is yes)
# See http://sourceforge.net/projects/gettext/
#
-# PostScript printing: POSTSCRIPT=yes (default is no)
+# PostScript printing: POSTSCRIPT=yes (default is no)
#
-# Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes)
+# Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes)
#
-# XPM Image Support: XPM=[path to XPM directory]
-# Default is "xpm", using the files included in the distribution.
-# Use "no" to disable this feature.
+# XPM Image Support: XPM=[path to XPM directory]
+# Default is "xpm", using the files included in the distribution.
+# Use "no" to disable this feature.
#
-# Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED)
+# Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED)
#
-# Processor Version: CPUNR=[i386, i486, i586, i686, pentium4] (default is
-# i386)
+# Processor Version: CPUNR=[i386, i486, i586, i686, pentium4] (default is
+# i386)
#
-# Version Support: WINVER=[0x0400, 0x0500] (default is 0x0400)
+# Version Support: WINVER=[0x0400, 0x0500] (default is 0x0400)
#
# Debug version: DEBUG=yes
# Mapfile: MAP=[no, yes or lines] (default is yes)
# yes: Write a normal mapfile.
# lines: Write a mapfile with line numbers (only for VC6 and later)
#
-# Netbeans Debugging Support: NBDEBUG=[yes or no] (should be no, yes
-# doesn't work)
+# Netbeans Debugging Support: NBDEBUG=[yes or no] (should be no, yes
+# doesn't work)
#
-# Visual C Version: MSVCVER=m.n (default derived from nmake if undefined)
+# Visual C Version: MSVCVER=m.n (default derived from nmake if undefined)
+#
+# Static Code Analysis: ANALYZE=yes (works with VS2012 only)
#
# You can combine any of these interfaces
#
CFLAGS=$(CFLAGS) $(WP64CHECK)
!endif
+# Static code analysis generally available starting with VS2012
+!if ("$(ANALYZE)" == "yes") && ("$(MSVCVER)" == "11.0")
+CFLAGS=$(CFLAGS) /analyze
+!endif
+
CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG)
RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG
! ifdef USE_MSVCRT