Can we accept another argument with make install?
It would help when we have a default global(system?) installation of node, and we want to build from source and install globally along with that.
The argument would help us do something like:
$ [sudo] make install NAME=node10
$ node10 -v // use it via the name provided
$ node -v // works with the default globally installed version
If the argument is not provided, default to node
Can we accept another argument with
make install?It would help when we have a default global(system?) installation of
node, and we want to build from source and install globally along with that.The argument would help us do something like:
If the argument is not provided, default to
node