I am working on a (GNU) Makefile and need to save arguments in a variable.
Like if I give the command make projectX
, then I need to assign projectX
to some variable.
I tried to assign projectX
like this, assuming that argument 1 would be projectX
.
PRODUCT := "$1"
But this does not work.
What is the best way to assign make arguments in a variable?