how to run a makefile code example
Example 1: how to run makefile in windows
// Install Chocolatey
// Install cygwin
choco install make --source=cygwin
// add variable to path
"C:\tools\cygwin\bin"
Example 2: make file creation
hello: hello.c
${CC} hello.c -o hello