To build GNU packages from source the dance is:

./configure --prefix=/usr/local  # Or your preferred place
make
make install

The configure script queries your environment for all sorts of relevant details (compiler version, usability of various language characteristics, various libraries, functions that might carry different names, ...) and creates some header files from the result reflecting the required configuration. It also builds the Makefile. Running make by itself will fail, until you run configure there is no Makefile, and so no install target.

Why do you want that specific version of make? That one is a quite stable package, the announcement doesn't show any revolutionary changes.

Answer from vonbrand on Stack Exchange
🌐
GNU
gnu.org › software › make
Make - GNU Project - Free Software Foundation
Make gets its knowledge of how to build your program from a file called the makefile, which lists each of the non-source files and how to compute it from other files. When you write a program, you should write a makefile for it, so that it is possible to use Make to build and install the program.
Discussions

makefile - How can I install and use "make" in Windows? - Stack Overflow
The GNU version is so much better ... largely disappeared. Many Linux systems contain both the original Make (called 'make') and the GNU version Make (called 'gmake'). 2020-12-30T16:15:28.11Z+00:00 ... GNU Make is available on Chocolatey. Install Chocolatey from her... More on stackoverflow.com
🌐 stackoverflow.com
makefile - How to install "make" in ubuntu? - Stack Overflow
I'm trying to install yum or apt-get into my system "ubuntu centOS". I did download the binary files for these two programs from the internet using the command wget. but after decompressi... More on stackoverflow.com
🌐 stackoverflow.com
"make install" command not found in Manjaro 18 Gnome

"Pacman -S make" to install make?

More on reddit.com
🌐 r/ManjaroLinux
1
2
July 12, 2019
GCC on Chromebook

Have you looked at crouton yet?

More on reddit.com
🌐 r/linux
6
3
September 18, 2015
🌐
iO Flood
ioflood.com › blog › install-make-command-linux
Intro to 'make' Linux Command: Installation and Usage
April 26, 2024 - This command will install the ‘make’ command on your Linux system using the YUM package manager. The output provides details about the installation process, including the specific version of ‘make’ that will be installed and any dependencies that are resolved. If you want to install ‘make’ from source code, you can do so by following these steps: First, download the source code from the GNU ‘make’ project’s official website.
🌐
Shells
kb.shells.com › tutorials › Ubuntu_Server_Latest › GNU_Make
GNU Make on Ubuntu Server - Shells KB
This will install GNU Make and all its dependencies on your Ubuntu Server.
🌐
GeeksforGeeks
geeksforgeeks.org › how-to-install-make-on-ubuntu
How to install make on Ubuntu - GeeksforGeeks
January 17, 2025 - If the make binary is located at '/usr/bin/make', the installation was successful. The 'make' command is a crucial tool for developers working on Linux, especially for compiling large projects with many files.
🌐
Shells
kb.shells.com › tutorials › Kali_Linux_Latest › GNU_Make
GNU Make on Kali Linux - Shells KB
Step-by-step guide to install GNU Make on Kali Linux. Complete tutorial with commands and configuration.
Find elsewhere
🌐
Softpedia
linux.softpedia.com › programming › assembler tools › gnu make
GNU Make - Download (Linux) - Softpedia
Download GNU Make 4.3 for Linux - A powerful and Open Source CLI tool that controls the generation of executable files in Linux
🌐
Red Hat
docs.redhat.com › en › documentation › red_hat_developer_toolset › 9 › html › user_guide › chap-make
Chapter 3. GNU make | User Guide | Red Hat Developer Toolset | 9 | Red Hat Documentation
Red Hat Developer Toolset is distributed with make 4.2.1. This version is more recent than the version included in Red Hat Enterprise Linux and provides a number of bug fixes and enhancements. In Red Hat Developer Toolset, GNU make is provided by the devtoolset-9-make package and is automatically installed with devtoolset-9-toolchain as described in Section 1.5, “Installing Red Hat Developer Toolset”.
🌐
Linux Hint
linuxhint.com › install-make-ubuntu
How to install make on Ubuntu – Linux Hint
It includes executable targets and instructions and is not permitted to generate several makefiles. It’s best if you make a separate directory for it. It maintains track of recently updated files, so only update those that are needed. As a result, this article will show you how to install the make package on Ubuntu.
🌐
GNU
gnu.org › software › libc › manual › › html_node › Running-make-install.html
Running make install (The GNU C Library)
Next: Recommended Tools for Compilation, Previous: Configuring and compiling the GNU C Library, Up: Installing the GNU C Library [Contents][Index] To install the library and its header files, and the Info files of the manual, type make install. This will build things, if necessary, before ...
🌐
Linux From Scratch
linuxfromscratch.org › museum › lfs-museum › 5.1-pre1 › LFS-BOOK-5.1-PRE1-HTML › chapter05 › make.html
Installing Make-3.80
Official download location for Make (3.80): ftp://ftp.gnu.org/gnu/make/ For its installation Make depends on: Bash, Binutils, Coreutils, Diffutils, GCC, Gettext, Glibc, Grep, Sed.
🌐
Incredibuild
incredibuild.com › home › integrations › gnu make
What is GNU Make and How Do I Install It? | Incredibuild
September 17, 2024 - GNU Make is a popular development utility that orchestrates the compilation of software projects. Learn how to use GNU Make with Incredibuild.
🌐
University of Texas
cs.utexas.edu › ~moore › acl2 › v6-3 › installation › installing-make.html
ACL2 Version 6.3 Installation Guide: Installing Make
We have seen problems with Version 3.81 of GNU make on Linux (though not on a Mac). (And in builds with Allegro Common Lisp on 32-bit Linux we have seen problems with GNU make version 3.80 that seemed to be solved with version 3.81.) Here are instructions for installing Version 3.80 of GNU ...
🌐
Ubuntu
help.ubuntu.com › community › InstallingCompilers
InstallingCompilers - Community Help Wiki
August 10, 2012 - $ sudo apt-get update $ sudo apt-get upgrade $ sudo apt-get install build-essential $ gcc -v $ make -v · Now, you should able to compile software using C / C++ compilers. To install the manpages for c and c++ development, install the manpages-dev package. Note that GNU's Java compiler is not the same as the one developed and distributed by Sun Microsystems, and will not provide Java to the firefox browser.
🌐
GNU
gnu.org › software › make › manual › html_node › Install-Command-Categories.html
Install Command Categories (GNU make)
Previous: Standard Targets for Users, Up: Makefile Conventions [Contents][Index] When writing the install target, you must classify all the commands into three categories: normal ones, pre-installation commands and post-installation commands.
🌐
Linux Hint
linuxhint.com › gnu-make-tutorial
GNU Make Tutorial – Linux Hint
Guide on how the GNU Make works to locate the makefile for a project as the file specifies the required dependencies between various files in the given project.