Is there a way to tell make to complain when I use unset variables? Something similar to set -u in bash?
set -u
I have just spent twenty minutes debugging my Makef
Here is how one can do it to make make fail immediately:
ifndef PSWD $(error PSWD is undefined) endif