Which one of the following can be used to specify the directory to search the dependencies and target files?

🎲 Try a Random Question  |  Total Questions in Quiz: 19  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Linux Basics Practice Test: Makefile — practice the complete quiz, review flashcards, or try a random question.

A Makefile is a text file that contains rules that tell Linux's make utility how to build an application. The rules are made up of three parts: Target: The file or thing that must be made Prerequisites: The files that must exist before the target can be created Commands: The shell commands that will create the target from the prerequisites  The basic syntax for a Makefile is: target, dependencies, and commands.  The dependency line in a Makefile has two parts: Target files: The first part of the dependency line, before the colon Source files: The second part of the dependency line,... Show more

Which one of the following can be used to specify the directory to search the dependencies and target files?