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
🌐
iO Flood
ioflood.com › blog › install-make-command-linux
Intro to 'make' Linux Command: Installation and Usage
April 26, 2024 - However, the availability of specific versions might depend on the repositories configured on your system. # For APT sudo apt-get install make=4.1-9.1ubuntu1 # For YUM sudo yum ...
Discussions

linux - install make in redhat - make command not found - Stack Overflow
-bash: make: command not found [root@Ritely r2]# I am using redhat and I need to install make. any help please. I am setting up a vps server and need to install python: $ cd reddit/r2 $ make pyx $ More on stackoverflow.com
🌐 stackoverflow.com
makefile - how to update make 3.81 linux - Stack Overflow
I am new to Linux (new as in installed it yesterday), I need it for my programming course in the university and I've been told to install specific versions of specific programs, but though I've use... More on stackoverflow.com
🌐 stackoverflow.com
How to install GNU make 4.x on the CentOS 7
There was an error while loading. Please reload this page More on github.com
🌐 github.com
7
August 10, 2018
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
🌐
LinuxHelp
linuxhelp.com › questions › how-to-install-make-command-in-centos
How to install MAKE command in centos
October 3, 2017 - use below steps to install Make 4.1.. # yum install centos-release-scl-rh # yum install devtoolset-6-make -y # scl enable devtoolset-6 bash hi.., i need to install make command version 4 or higher version on centos.. please help me...
🌐
CentOS Repositories
centos.pkgs.org › 7 › centos-sclo-rh-x86_64 › devtoolset-7-make-4.2.1-2.el7.x86_64.rpm.html
devtoolset-7-make-4.2.1-2.el7.x86_64.rpm CentOS 7 Download
# yum install devtoolset-7-make · 2017-06-13 - Patsy Franklin <pfrankli@redhat.com> - 4.2.1-2 - After rebase, output-sync test can randomly timeout. Disable until resolved upstream. 2017-06-08 - Patsy Franklin <pfrankli@redhat.com> - 4.2.1-1 - Rebase to make-4.2.1 Removed two patches that have been resolved upstream.
🌐
nixCraft
cyberciti.biz › nixcraft › howto › centos › rhel / centos linux install core development tools automake, gcc (c/c++), perl, python & debuggers
RHEL / CentOS Linux Install Core Development Tools Automake, Gcc (C/C++), Perl, Python & Debuggers - nixCraft
April 5, 2024 - These tools include core development ... following yum command/dnf command as root user: $ sudo yum group install "Development Tools" OR # yum groupinstall 'Development Tools' Sample outputs:...
Find elsewhere
🌐
Power Sysadmin Blog
poweradm.com › home › make command not found on linux
Make Command Not Found on Linux - Power Sysadmin Blog
March 23, 2023 - On rpm-based Linux distribution ( Fedora, Oracle/Rocky Linux, CentOS, Fedora, and RHEL), you can install the make tool using the command: # yum install make · or · # dnf install make · Or as part of the Development tools package group (requires ...
🌐
GitHub
github.com › ninenines › cowboy › issues › 1316
How to install GNU make 4.x on the CentOS 7 · Issue #1316 · ninenines/cowboy
August 10, 2018 - make erlang.mk:30: Please upgrade to GNU Make 4 or later: https://erlang.mk/guide/installation.html erlang.mk:30: Please upgrade to GNU Make 4 or later: https://erlang.mk/guide/installation.html ERLC hello-world_app.erl hello-world_sup.e...
Author   ninenines
🌐
LinuxQuestions.org
linuxquestions.org › questions › linux-newbie-8 › does-'yum-install'-also-require-configure-make-install-4175426058
does 'yum install' also require configure/make/install ?
September 6, 2012 - Hello, I am wanting to install quagga routing software into Fedora. If I simply use 'yum install quagga', does this mean I do not need to use the:
🌐
GitHub
github.com › rpm-software-management › yum › blob › master › Makefile
yum/Makefile at master · rpm-software-management/yum
install -m 755 bin/yum-updatesd.py $(DESTDIR)/usr/sbin/yum-updatesd · · mkdir -p $(DESTDIR)/var/cache/yum · mkdir -p $(DESTDIR)/var/lib/yum · · for d in $(SUBDIRS); do make PYTHON=$(PYTHON) DESTDIR=`cd $(DESTDIR); pwd` UNITDIR=$(UNITDIR) INIT=$(INIT) -C $$d install; [ $$? = 0 ] || exit 1; done ·
Author   rpm-software-management
🌐
Installati.one
installati.one › home › centos › 8th › how to install make on centos 8
How To Install make on CentOS 8 | Installati.one
August 1, 2021 - Make allows users to build and install packages without any significant knowledge about the details of the build process. The details about how the program should be built are provided for make in the program’s makefile. We can use yum or dnf to install make on CentOS 8.
🌐
CentOS Repositories
centos.pkgs.org › 7 › centos-x86_64 › make-3.82-24.el7.x86_64.rpm.html
make-3.82-24.el7.x86_64.rpm - CentOS Repositories - pkgs.org
Install make rpm package: # yum install make · 2018-12-05 - DJ Delorie <dj@redhat.com> - 1:3.82-24 - Change fatal() to error() when a mix of explicit and implicit targets (in that order) is detected. Resolves: #1582545 · 2016-07-07 - Patsy Franklin <pfrankli@redhat.com> - 1:3.82-23 - In very ...
🌐
Frontistr
manual.frontistr.com › en › install › install_08.html
Installation procedure to CentOS7.6(Makefile.conf) - FrontISTR ver. 5.6
At first, install the basic build toolchains and libraries as follows. $ su # yum group mark install "Development Tools" # yum update # yum install openmpi-devel cmake # exit
🌐
TecAdmin
tecadmin.net › install-development-tools-on-centos
Install Development Tools on CentOS, RHEL & Fedora
April 26, 2025 - Development tools contain useful tools like GCC, g++, make, libtool, rpmbuild and autoconf etc packages. This tutorial will help you to install development tools on CentOS, RHEL & Fedora systems. Use the following set of commands to install development packages on your RedHat and their derivative systems. ... yum groupinfo "Development Tools" Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.cc.columbia.edu * extras: mirror.metrocast.net * updates: mirror.solarvps.com Group: Development Tools Group-Id: development Description: A basic development environment.