In a makefile, how VPATH works?

in the following website

the author says:

VPATH was designed to find sources, not targets.

but in GNU make's manual, it says:

The value of the make variable VPATH specifies a list of directories that make should search. Most often, the directories are expected to contain prerequisite files that are not in the current directory; however, make uses VPATH as a search list for both prerequisites and targets of rules.

what does this mean?

2 Answers

It means exactly what it says. make will look both for things needed to build something and things already built to see if it needs to be rebuilt.

A typical scenario is if you use a temporary build directory where you place object files before linking or creating an archive. Then you want make to look there too to see what needs to be rebuilt.

1

The GNU Make manual says that you can use VPATH to find targets. Paul Smith is saying that you generally shouldn't. (Whether VPATH was or wasn't originally designed for that purpose is moot.)

There are a few reasons why using VPATH this way can cause problems (none of them damning) but the page at paulandlesley is specifically talking about using VPATH naively to build targets in remote locations (which just doesn't work), in the context of multi-architecture builds.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like