Skip to content

How: To Install Nmake !link!

Create hello.c :

nmake /? You should see help information with version details. Create a file called makefile : how to install nmake

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

C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0\bin\nmake.exe If you have vcpkg installed: int main() printf("Hello from NMAKE!\n")

clean: del *.obj *.exe

hello.exe: hello.obj cl hello.obj /Fehello.exe hello.obj: hello.c cl /c hello.c

Run:

how to install nmake
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.