Closed mauzigoe closed 1 year ago
In your Makefile the variable PREFIX is not referenced in the install subcommand. Instead the (non-existing) variable P gets referenced. With parenthesis ({}) around the variable name, the issue is solved.
Makefile
PREFIX
install
P
The issue referes to the full C implementation downloaded from the pcg-website: https://www.pcg-random.org/using-pcg-c.html
In your
Makefile
the variablePREFIX
is not referenced in theinstall
subcommand. Instead the (non-existing) variableP
gets referenced. With parenthesis ({}) around the variable name, the issue is solved.