snippetbashTip
nmake — The Microsoft Program Maintenance Utility for building projects based on commands in a makefile. Mor
Viewed 0 times
themaintenancecommandmicrosoftclinmakeprogramutility
windows
Problem
How to use the
nmake command: The Microsoft Program Maintenance Utility for building projects based on commands in a makefile. More information: <https://learn.microsoft.com/cpp/build/reference/nmake-reference>.Solution
nmake — The Microsoft Program Maintenance Utility for building projects based on commands in a makefile. More information: <https://learn.microsoft.com/cpp/build/reference/nmake-reference>.Build targets using the default makefile in the current directory:
nmakeBuild targets using a specific makefile:
nmake /F {{path\to\makefile}}Build a specific target:
nmake {{target}}Display commands without executing them:
nmake /NDisplay all macro definitions and target descriptions:
nmake /PContinue building unrelated targets on error:
nmake /KBuild and ignore timestamp checks (force rebuild):
nmake /ASuppress copyright message:
nmake /NOLOGOCode Snippets
Build targets using the default makefile in the current directory
nmakeBuild targets using a specific makefile
nmake /F {{path\to\makefile}}Build a specific target
nmake {{target}}Display commands without executing them
nmake /NDisplay all macro definitions and target descriptions
nmake /PContext
tldr-pages: windows/nmake
Revisions (0)
No revisions yet.