How to Install make in Ubuntu 18.04



Install make by entering the following commands in the terminal:

sudo apt update
sudo apt install make

Description:

utility for directing compilation

GNU Make is a utility which controls the generation of executables and other target files of a program from the program's source files. It determines automatically which pieces of a large program need to be (re)created, and issues the commands to (re)create them. Make can be used to organize any task in which targets (files) are to be automatically updated based on input files whenever the corresponding input is newer --- it is not limited to building computer programs. Indeed, Make is a general purpose dependency solver.

Homepage: http://www.gnu.org/software/make/

Version: 4.1-9.1ubuntu1

Section: devel