How | To Install Nmake

C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0\bin\nmake.exe If you have vcpkg installed:

hello.exe: hello.obj cl hello.obj /Fehello.exe hello.obj: hello.c cl /c hello.c how to install nmake

nmake /? You should see help information with version details. Create a file called makefile : C:\Program Files (x86)\Microsoft SDKs\Windows\v10

Run:

Create hello.c :

#include <stdio.h> int main() printf("Hello from NMAKE!\n"); return 0; int main() printf("Hello from NMAKE!\n")

clean: del *.obj *.exe