Introduction of Make
* Introduction Building a program from source code typically involves a few common steps: – Writing the source code – Process the code to expand all *#include* files, macros, etc. – Compiling the expanded source code to machine assembly language – Compiling assembly language to machine binary code – Linking binary code in multiple files or libraries into an executable binary program Executing these steps on a small set of source code may be manageable, but as the source code gets larger, the process becomes more complex. * The Make System The *make* command looks for a file called … Continue reading Introduction of Make