What is a make file?
This is file that can be run that makes it easier to compile multiple file that are part of the same program
What can a make file do?
> Compile multiple files easily
> Only compiles the files that have changed (reducing the amount of processing)
How is a make file ran?
By typing ‘make’
How do you call a make file with a different name?
By typing ‘make -f MyMakeFileName’