GNU Make is an open-source Makefile utility licensed under the GPLv2 license. Most of the tools on my website use Makefiles, and thus will require GNU Make or some alternative.
GNU Make has no prerequisites.
As I write this, the latest stable version of GNU Make is 3.81. You can download this, or another version, at http://ftp.gnu.org/gnu/make/. Assuming you want to install version 3.81: download make-3.81.tar.gz, and follow the rest of these instructions to install it.
$ wget http://ftp.gnu.org/gnu/make/make-3.81.tar.gz
$ gzip -dc < make-3.81.tar.gz | tar -xf - $ cd make-3.81
$ ./configure $ sh ./build.sh $ ./make check
# ./make install
GNU Tar, when installed as instructed above, produces the following files:
I personally dislike outdated documentation. If anything here seems wrong, or perhaps did not work for you, please email me (jay@petio.org) and tell me so I can update it. Thanks!