Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is NMAKE and how do I use it?

Tags:

nmake

What is NMAKE and how do I use it?

Is there a good tutorial for NMAKE?

like image 324
nikky Avatar asked Apr 08 '09 07:04

nikky


People also ask

How do I run a Makefile with nmake?

An easy way is to start a command prompt from Visual Studio ( Tools->Visual Studio Command Prompt ), so that all the necessary environment variables are set. Change directory to where the Makefile exists and run NMake. D:\tmp\Simple-Makefile>nmake Microsoft (R) Program Maintenance Utility Version 10.00.

Where is nmake?

You should make sure that you have at least one C compiler installed. You can install toolset like “MSVC v142 - VS 2019 C++ x64/x86 build tools (v14. 24)” from VS installer, that include C compiler, then you can find nmake.exe under “C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.24.

How do I open developer command prompt?

On the menu bar, select Tools > Command Line > Developer Command Prompt or Developer PowerShell.


1 Answers

NMAKE is Microsoft's implementation of the make tool.

like image 92
Jon Skeet Avatar answered Nov 17 '22 03:11

Jon Skeet