Passar para o conteúdo principal

How To Install Nmake | 2K |

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

clean: del *.obj *.exe

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

hello.exe: hello.obj cl hello.obj /Fehello.exe hello.obj: hello.c cl /c hello.c C:\Program Files (x86)\Microsoft SDKs\Windows\v10

nmake /? You should see help information with version details. Create a file called makefile : int main() printf("Hello from NMAKE!\n")

Run: