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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How is a make file ran?

A

By typing ‘make’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you call a make file with a different name?

A

By typing ‘make -f MyMakeFileName’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly