?? About the Linux Open Source Project Foundation component make compilation process
Very many Linux open source projects will use the make to compile the executable files. This is a set of processes.
first, the GNU build system: Https://en.wikipedia.org/wiki/GNU_build_system use Autotool to compile and manage the entire product production process.
This is the picture below:
You need to know about make and makefile first.
Make : https://en.wikipedia.org/wiki/Make_ (software)
Makefile: Https://en.wikipedia.org/wiki/Makefile
then understand the following automake: Https://en.wikipedia.org/wiki/Automake
autoconf: https://en.wikipedia.org/wiki/Autoconf
Libtool: Https://en.wikipedia.org/wiki/GNU_Libtool
students who want to practice, can participate in this simple example: Http://www.gnu.org/software/automake/manual/html_node/Hello-World.html#Hello-World
About the Linux Open Source Project Foundation component make compilation process