I have no idea what linux distribution "ubuntu centOS" is. Ubuntu and CentOS are two different distributions.

To answer the question in the header: To install make in ubuntu you have to install build-essentials

sudo apt-get install build-essential
Answer from steffenhk on Stack Overflow
🌐
LinuxQuestions.org
linuxquestions.org › questions › linux-newbie-8 › help-how-to-install-a-makefile-872181
Help! how to install a "makefile" ???
Hi, i'm new in linux! i'm using CentOS 5 i want to install VHCS -> vhcs.net it comes with a Makefile and Makefile.centos5 how do i install that???
🌐
LinuxVox
linuxvox.com › blog › install-make-linux
Installing `make` on Linux: A Comprehensive Guide — linuxvox.com
For Red Hat-based systems like CentOS, you can use the yum or dnf package manager. For CentOS 8 and later, use dnf: ... Let's create a simple C program and a Makefile to compile it.
Discussions

Make and build utilities on CentOS/RHEL? - Stack Overflow
I've been unsuccessfully searching for a way to install make utility on my CentOS 5.2. I've looked through some RPM repositories and online, with no avail. Installing gcc, gcc-c++ didn't help! Pack... More on stackoverflow.com
🌐 stackoverflow.com
software installation - How do you install Make from source? - Unix & Linux Stack Exchange
I have tried Make version 4.2 and 4.3 on Ubuntu 18.x, RHEL 8.x, and SUSE 15.x servers. But I get the same problem. I cannot use binary packages (e.g, yum, apt, or zypper commands). I try to run More on unix.stackexchange.com
🌐 unix.stackexchange.com
April 16, 2020
makefile - How to use make to install an application on Cent-OS? - Stack Overflow
I'm trying to install an application on Cent-OS from its source code. which is mpg123-0.59r the installation instruction is : # make clean # make # make install but each time I'm trying to exc... More on stackoverflow.com
🌐 stackoverflow.com
linux - What are makefiles, 'make install', etc.? - Stack Overflow
I see the following things in Linux, but what are they? ./configure make make install etc etc. More on stackoverflow.com
🌐 stackoverflow.com
🌐
The Linux Documentation Project
tldp.org › HOWTO › Software-Building-HOWTO-3.html
Building and Installing Software Packages for Linux: Using Make
An Imakefile is, to quote the man page, a "template" Makefile. The imake utility constructs a Makefile appropriate for your system from the Imakefile. In almost all cases, however, you would run xmkmf, a shell script that invokes imake, a front end for it. Check the README or INSTALL file included in the software archive for specific instructions.
Find elsewhere
🌐
iO Flood
ioflood.com › blog › install-make-command-linux
Intro to 'make' Linux Command: Installation and Usage
April 26, 2024 - This is a basic way to install the ‘make’ command in Linux, but there’s much more to learn about installing and using ‘make’. Continue reading for more detailed information and advanced usage scenarios. ... The ‘make’ command is a build automation tool that automatically builds executable programs and libraries from source code by reading files called Makefiles which specify how to derive the target program.
🌐
DigitalOcean
digitalocean.com › community › tutorials › how-to-compile-and-install-packages-from-source-using-make-on-a-vps
How To Compile and Install Packages From Source Using Make on a VPS | DigitalOcean
August 30, 2013 - By doing this, the compiler knows where to look for the libraries required by the source, or in this case by curl. Besides that it will also figure out where to install the package afterwards. When it is done it will generate a file called Makefile with all the info in it.
🌐
Linux Handbook
linuxhandbook.com › using-make
Using the Make Utility and Makefiles in Linux [Guide]
December 6, 2022 - To install make on Debian, Ubuntu, and their derivatives, use the apt package manager like so: ... Now that the make utility is installed, you can proceed to understand it with examples.
🌐
Stack Overflow
stackoverflow.com › questions › 8974498 › how-to-use-make-to-install-an-application-on-cent-os
makefile - How to use make to install an application on Cent-OS? - Stack Overflow
I think yum should be smart enough to install dependencies.......... also this applications gives me the same issue its not about an application its about " make " ......... # INSTALL ZAPTEL # cd /usr/src/zap* # perl -pi~ -e 's/# ztdummy/ztdummy/' Makefile # make clean # make # make install ... I was installing a driver-package and to use that you absolutely need the kernel source ! also, I was trying that on a public server so I don't know if its shared or not ! and I have no idea about the hardware type ! so after some research it appears that it was a shared server and it has an old hardware that not include much new implementations.
🌐
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 deb-based distros such as Ubuntu, Debian, Raspbian, Kali Linux, you can install the make package using the command: ... The make command is also contained in the build-essential metapackage. To install it run: ... To automatically install the make command and development tools in a Docker container, you can add the following directive to the docker file: ... On Windows, you can install the make command using the Chocolatey package manager.
🌐
Thoughtbot
thoughtbot.com › blog › the-magic-behind-configure-make-make-install
The magic behind configure, make, and make install
August 5, 2024 - The next line uses the AC_CONFIG_FILES macro to tell autoconf that the configure script should do just that: it should find a file called Makefile.in, substitute placeholders like @PACKAGE_VERSION@ with values like 0.1, and write the results to Makefile.
🌐
DEV Community
dev.to › skypy › linux-make-install-command-2dd6
Linux make install command - DEV Community
September 1, 2021 - $ ls testapp installer.sh makefile testapp testapp.c testapp.conf ... #!/bin/bash ROOTDIR=${1:-/opt/testapp} OWNER=${2:-testapp} GROUP=${3:-testapp} # Create bin and opt directories install -v -m 755 -o $OWNER -g $GROUP -d $ROOTDIR/bin $ROOTDIR/etc if [ "$?" -ne "0" ]; then echo "Install: Failed to create directories." exit 1 fi # install binary install -b -v -m 750 -o $OWNER -g $GROUP -s testapp $ROOTDIR/bin if [ "$?" -ne "0" ]; then echo "Install: Failed to install the binary" exit 2 fi # install configuration file install -b -v -m 600 -o $OWNER -g $GROUP testapp.conf $ROOTDIR/etc if [ "$?" -ne "0" ]; then echo "Install: Failed to install the config file" exit 3 fi echo "installation completed.."
🌐
GeeksforGeeks
geeksforgeeks.org › how-to-install-make-on-ubuntu
How to install make on Ubuntu - GeeksforGeeks
January 17, 2025 - The "make" program in Linux is used to compile and manage a set of source code applications and files. It allows developers to install and gather a range of apps via the terminal. It also controls and cuts down on the amount of time necessary for compilation.
🌐
Dummies
dummies.com › article › technology › computers › operating-systems › linux › linux-how-to-run-make-150284
Linux: How to Run make | dummies
March 26, 2016 - If your makefile happens to have a different name from the default names, you have to use the -f option to specify the makefile.
🌐
Command Linux
commandlinux.com › home › how to › makefile on linux
Makefile On Linux
April 27, 2026 - Before starting, confirm that make is installed on your system. Create an empty directory called myproject. Inside it, create a file named Makefile with this content: ... Every rule in a makefile has three parts.
🌐
Linux Genie
linuxgenie.net › home › how to install and use make on ubuntu 22.04
How to Install and Use make on Ubuntu 22.04 - Linux Genie
February 29, 2024 - To install make, use the “sudo apt install make” or “sudo apt install build-essential” commands. To use make, execute “make” and “make install”.