chronodekar
Senior member
When installing from source, I usually follow this procedure,
At times when I want to customize I run,
to figure out what I want. It gives a list of all the options the current "configure" supports.
Does anyone have any idea if there is such a thing for Makefiles?
This is useless,
All it does is give me help information about the "make" utility. Not what I'm looking for.
Why I ask, is because, when I was browsing through one of the Makefiles, I discovered a few extra options (other than the default "all:" ) that would let me just build only the parts I wanted. The sad thing is, I didn't know of this from reading either the README or INSTALL files. Is there some convention that might be followed ?
-chronodekar
Code:
./configure
make
make install
Code:
./configure --help
Does anyone have any idea if there is such a thing for Makefiles?
This is useless,
Code:
make --help
Why I ask, is because, when I was browsing through one of the Makefiles, I discovered a few extra options (other than the default "all:" ) that would let me just build only the parts I wanted. The sad thing is, I didn't know of this from reading either the README or INSTALL files. Is there some convention that might be followed ?
-chronodekar