CMake
http://www.cmake.org/
A cross-platform, open-source build system. CMake is a family of tools designed to build, test and package software. CMake is used to control the software compilation process using simple platform and compiler independent configuration files. CMake generates native makefiles and workspaces that can be used in the compiler environment of your choice.
distcc
http://distcc.org/
In software development, distcc is a tool for speeding up compilation of source code by using distributed computing over a computer network. With the right configuration, distcc can dramatically reduce a project's compilation time.
-
distcc
Wikipedia page of distcc
GNU Make
https://www.gnu.org/software/make/
GNU Make is a tool which controls the generation of executables and other non-source files of a program from the program's source files.
make
Make is a utility that automatically builds executable programs and libraries from source code by reading files called makefiles which specify how to derive the target program. Though integrated development environments and language-specific compiler features can also be used to manage a build process, Make remains widely used, especially in Unix.
Comments ( 1 )