I'm using gyp to generate makefiles for my project. Makefiles work, cause working binaries to pop up in "out" directory, all is dandy here.
However, I would like my makefiles to have some "standard" actions/targets, namely "install" "uninstall", and "clean".
I've added "install" target to .gyp files, but I have doubts if that is the correct way of doing that, especially that it seems there is no way to exclude "install" target from "all" in make using gyp.
I am also wondering if there is a tool to generate ./configure files for gyp, or if those should be written by developer and only run gyp with some needed options.
What is the correct way to add those targets ("install"...) to makefiles generated by gyp? Can it be made in such way, that once specified those actions will work with other build systems too? (ninja, etc.)