Linux Makefile Question:
Download Questions PDF

When a target of makefile fails to execute:
a) make does not executes any other target dependent on it
b) it returns a status
c) both (a) and (b)
d) none of the mentioned

Answer:

c) both (a) and (b)

Download Makefile Interview Questions And Answers PDF

Previous QuestionNext Question
Which one of the following is not a valid makefile directive?
a) if
b) elif
c) endif
d) none of the mentioned
Which one of the following provides all dependencies in the makefile?
a) $^
b) $*
c) $:
d) none of the mentioned