EasyBuild is a software build and installation framework used to manage (scientific) software on High Performance Computing (HPC) systems in a more efficient way, available free and open source under the GNU General Public License v2.0.
N/A
GNU Make
Score 7.7 out of 10
N/A
GNU Make is an open source and free build automation tool.
I'm a full-stack developer that has used various build tools, including Maven, Gradle, and NPM/yarn. For our C projects, I also investigated CMake and Ninja, but they seemed more difficult to learn and more tedious to work with. GNU Make is a single binary that can be easily …
A lot of existing projects we had been running are based on GNU Make, it does not make sense to move away from that. To build on top of those, GNU Make had been used. A lot of experienced engineers in the team are already familiar with the GNU Make syntax and structure and no …
Makefiles are machine-readable documentation that make your workflow reproducible. If the build process is a very continuous flow of operations within scope, it will do it well and also act as a documentation of all the dependence. For some long-term projects, Make has been used extensively and being maintained to do the job.
In general, it is fair to say the support is sufficient although we do not deal with support directly. There are a lot of forum people chiming in with suggestions or recommendations of particular usage or issues we run into. Since it is open software, patch and fixes will be available from time to time. A lot of information is available in the web now for knowing GNU Make from learning, example, teaching, etc.
I'm a full-stack developer that has used various build tools, including Maven, Gradle, and NPM/yarn. For our C projects, I also investigated CMake and Ninja, but they seemed more difficult to learn and more tedious to work with. GNU Make is a single binary that can be easily downloaded, even for Windows under MingW32, is straightforward to learn, and works pretty well despite its age.