On Thu, 2018-03-29 at 14:09 +0200, Federico Bruni wrote: > VPATH = \ > $CURDIR/src
This is wrong. This expands the make variable $C and appends the
string "URDIR/src". Since C is not set (most likely) you'll get:
VPATH = URDIR/src
which doesn't exist, so this is a no-op.
You meant:
VPATH = $(CURDIR)/src
_______________________________________________
Help-make mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/help-make
