Platform SDK: Tools |
WIN32.MAK includes the following macros that control the type of target that is built. Set these macros in your makefile prior to including WIN32.MAK or set them as environment variables.
Specifies the version of the application. The value includes major and minor versions, (i.e. 3.51 or 4.0). It is used for checking version dependencies and for marking the executable with version information.
Specifies the operating system. The value can be WIN95, WINNT, or BOTH. It is used for checking platform dependencies.
Specifies the language. The value can be Japanese. The default value is the system locale.
In addition, you may set one of these values to 1 on the NMAKE command line or as an environment variable.
Specifies no debugging information should be included in the output files.
Specifies that information for the profiler should be included in the output files.
Specifies that information for the working set tuner (WST) should be included in the output files.
For example, the following command line specifies that no debugging information should be included in the output files:
nmake NODEBUG=1