On Wednesday, 21 April 2021 10:39:01 PDT Giuseppe D'Angelo via Interest wrote:
> But no $X. I'm still not sure what $PROJ means.

The way the example was given, the string "$PROJ" will be written literally to 
the Makefile. Make will then interpret it as $(P)ROJ, which is likely not what 
you want.

$ gmake -f /dev/stdin <<<'all: ; @echo $PROJ'
ROJ
$ gmake -f /dev/stdin P=abc <<<'all: ; @echo $PROJ'
abcROJ


-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel DPG Cloud Engineering



_______________________________________________
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest

Reply via email to