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
🌐
Medium
leangaurav.medium.com › how-to-setup-install-gnu-make-on-windows-324480f1da69
How to setup/install GNU make on Windows | by leangaurav | Medium
September 9, 2023 - Go to https://gnuwin32.sourceforge.net/packages/make.htm and download setup ... It’ll take you to sourceforge.net and start the download. Open the downloaded installer and hit next → next → next…
🌐
SourceForge
gnuwin32.sourceforge.net › packages › make.htm
make for Windows
If you download the package as Zip files, then you must download and install the dependencies zip file yourself. Developer files (header files and libraries) from other packages are however not included; so if you wish to develop your own applications, you must separately install the required packages. You can also download the files from the GnuWin32 files page.
🌐
GNU
gnu.org › software › make
Make - GNU Project - Free Software Foundation
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 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 ...
🌐
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
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”.
🌐
GitHub
gist.github.com › fscm › 3619ae946f3ea908a14c2ef1f835ecb9
[macOS] Install GNU Make tool from source · GitHub
To install the Command Line Tools run the following command: ... mkdir -p ~/.src/gnumake curl --silent --location --retry 3 "https://ftp.gnu.org/gnu/make/make-4.4.tar.gz" | tar xz --no-same-owner --strip-components=1 -C ~/.src/gnumake cd ~/.src/gnumake
🌐
GNU
gnu.org › software › make › manual › html_node › Install-Command-Categories.html
Install Command Categories (GNU make)
Category lines are no-ops in ordinary execution because these three Make variables are normally undefined (and you should not define them in the makefile). Here are the three possible category lines, each with a comment that explains what it means: $(PRE_INSTALL) # Pre-install commands follow.
Find elsewhere
🌐
Shells
kb.shells.com › tutorials › Windows_11 › GNU_Make
GNU Make on Windows 11 - Shells KB
Step-by-step guide to install GNU Make on Windows 11. Complete tutorial with commands and configuration.
🌐
openSUSE Forums
forums.opensuse.org › english › hardware
how to install "GNU - make" ? - Hardware - openSUSE Forums
February 15, 2009 - I am trying to install hplip and ... an active internet connection. warning: Missing REQUIRED dependency: make (make - GNU make utility to maintain groups of programs) warning: This installer cannot install ‘make’ for your distro/OS and/or version. error: Installation cannot ...
🌐
O'Reilly
oreilly.com › library › view › learn-webassembly › 9781788997379 › d7c68ff9-ce2e-43d7-ba8a-86e1b5d088d5.xhtml
Installing GNU make on Windows - Learn WebAssembly [Book]
September 25, 2018 - Installing GNU make on Windows You can install GNU make on Windows using Chocolatey. Open up Command Prompt or PowerShell and run the following command: choco install make You may... - Selection from Learn WebAssembly [Book]
Author   Mike Rourke
Published   2018
Pages   328
🌐
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.
🌐
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 ...
🌐
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.
🌐
Open Source For You
opensourceforu.com › home › audience › developers › gnu make in detail for beginners
GNU Make in Detail for Beginners | Open Source For You
June 4, 2020 - You have to install it, either using the package-management system, or by manually compiling from source. To compile and build from source, download the tarball, extract it, and go through the README file.
🌐
Bifrost
docs.getbifrost.ai › deployment-guides › how-to › install-make
Install make command - Bifrost AI Gateway
# Install Homebrew if needed: https://brew.sh brew install make gmake --version · If a project specifically requires GNU make as make, you can use: echo ‘alias make=“gmake”’ >> ~/.zshrc && source ~/.zshrc