Linux Makefile Question:
Download Questions PDF

As we type "make" command on the terminal:
a) make reads the makefile in the current directory
b) make reads the makefile in the parent directory
c) make reads the makefile in the predefined environment variable
d) none of the mentioned

Makefile Interview Question
Makefile Interview Question

Answer:

a) make reads the makefile in the current directory

Download Makefile Interview Questions And Answers PDF

Previous QuestionNext Question
If we want to get the exit status that specified targets are up to date or not, we have to execute the make command with option:
a) -q
b) -r
c) -s
d) -t
If make command is executed as "make -j 2″, then:
a) two jobs will run simultaneously
b) only two will be executed
c) it will give an error
d) none of the mentioned