Make Tutorial
Make is used to keep track of witch files that needs to be builded again after change in source files of usually C or C++.
Make calls a compilator in it's own script named makefile that is runned when writing Make in a GNU/Linux system.
To create a bin file the comilator firs makes objectfiles of the c/c++ sourcefiles and the assambless them in the last step.
Example file make (C) Download Here
Example file make (CC) Download Here
Example file main (C) Download Here