

★ -o: to name a target (something other than the default filename).★ When the -c options is NOT used, the compile will expect the command to give everything neccessary to compile AND link - to make the executable.To clean up your directory and get rid of files you dont need, run gmake clean. ★ -c: to invoke the Compile stage, which translates source code (.cpp files) into object code (.o files). To build your executable in general, run the command gmake.★ -g: adds debugging information to the executable file.★ -std=c++11: implement all c++11 features.★ remember to add a TAB character before the command part.cpp file, with make and make clean rules, looks something like the following. ★ The most simple Makefile for compiling a C++ program from a single.

