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