Run the command:
sudo apt-get install build-essential
Chances are you will need things like gcc to actually do the building so you might as well install those as well. The build-essential package will install other tools used along with make.
Top answer 1 of 4
268
Run the command:
sudo apt-get install build-essential
Chances are you will need things like gcc to actually do the building so you might as well install those as well. The build-essential package will install other tools used along with make.
2 of 4
17
sudo apt-get update
sudo apt-get -y install make
(-y = answer 'yes' to any prompts)
Check the installed version:
make -v
HowtoForge
howtoforge.com › home › how to create an ubuntu package from source
How to create an Ubuntu package from source
After having done this, we need to get the source code of the software that we want to build as a .deb package. In my example, I will use the TerminatorX source code which is an audio synthesizer application for Linux. You can use whatever you want, as long as you make sure that you can satisfy the dependency requirements for it.
Videos
02:52
How to install Package build-essential on Ubuntu Linux - YouTube
02:02
How to do install make package on Ubuntu 20.04 LTS | Install ...
27:21
How to Create .deb Packages for Debian, Ubuntu and Linux Mint - ...
04:46
How to Install Ubuntu Make in Ubuntu - YouTube
GeeksforGeeks
geeksforgeeks.org › installation guide › how-to-install-make-on-ubuntu
How to install make on Ubuntu - GeeksforGeeks
July 23, 2025 - Although Ubuntu often comes with make pre-installed, it's important to verify its installation. Firstly, we will update our operating system by using the below command. ... make package can be included by default in the Ubuntu operating system, so we need to check if it is already installed ...
Ubuntu
documentation.ubuntu.com › project › contributors › new-package › create-a-new-package
How to create a new package - Ubuntu project documentation
April 16, 2026 - Run the command providing the package name, version number, and path to the upstream tarball: sudo apt-get install dh-make bzr-builddeb cd .. bzr dh-make hello 2.10 hello-2.10.tar.gz ...
Ubuntu
packages.ubuntu.com › focal › ubuntu-make
Ubuntu – Details of package ubuntu-make in focal
Download Source Package ubuntu-make: [ubuntu-make_18.09+disco1.dsc] [ubuntu-make_18.09+disco1.tar.gz] Ubuntu MOTU Developers (Mail Archive) Please consider filing a bug or asking a question via Launchpad before contacting the maintainer directly. Didier Roche ·
Ubuntu
packages.ubuntu.com › make
Ubuntu – Package Search Results -- make
May 4, 2020 - stonking (admin): Arch Linux package build utility [universe] 7.1.0-1build1: amd64 arm64 armhf ppc64el riscv64 s390x · jammy (22.04LTS) (devel): GNU make compatible but reliable and simpler build tool [universe] 2.0.98.5-2.1: all
Ubuntu
packages.ubuntu.com › focal › make
Ubuntu – Details of package make in focal
two or more packages specified (make focal) · Content Copyright © 2025 Canonical Ltd.; See license terms. Ubuntu is a trademark of Canonical Ltd. Learn more about this site
Ubuntu
packaging.ubuntu.com › singlehtml
Ubuntu documentation
September 8, 2022 - This is the official place for learning all about Ubuntu Development and packaging.
Ubuntu
packages.ubuntu.com › trusty › make
Ubuntu – Error
two or more packages specified (make trusty) · Content Copyright © 2026 Canonical Ltd.; See license terms. Ubuntu is a trademark of Canonical Ltd. Learn more about this site
Zoomadmin
zoomadmin.com › HowToInstall › UbuntuPackage › make
How to install make ubuntu package on Ubuntu 20.04/Ubuntu 18.04/Ubuntu 19.04/Ubuntu 16.04
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.
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.
Ubuntu Wiki
wiki.ubuntu.com › ubuntu-make
ubuntu-make - Ubuntu Wiki
December 21, 2017 - If you're running 17.10 or want to run the "traditional" package, you can install from the Ubuntu Make PPA.
Launchpad
launchpad.net › ~ubuntu-desktop › +archive › ubuntu › ubuntu-make
Ubuntu Make packages : “Ubuntu Desktop” team - Launchpad
deb https://ppa.launchpadcontent.net/ubuntu-desktop/ubuntu-make/ubuntu YOUR_UBUNTU_VERSION_HERE main deb-src https://ppa.launchpadcontent.net/ubuntu-desktop/ubuntu-make/ubuntu YOUR_UBUNTU_VERSION_HERE main
Cmiss
cmiss.org › cmgui › wiki › BuildingUbuntuPackagesFromSource
Building ubuntu packages from source — Continuum Mechanics, Image analysis, Signal processing and System Identification
You are here: Home / cmgui / Wiki / Building ubuntu packages from source · The Plone® Open Source CMS/WCM is © 2000-2026 by the Plone Foundation and friends. Distributed under the GNU GPL license. Powered by Plone & Python ·
Thomas Stringer
trstringer.com › creating-python-pkg-ubuntu
Creating a Python package for Ubuntu... From code zero to apt install | Thomas Stringer
August 5, 2019 - For instance, to work with git repositories hosted on Launchpad this is where you would upload your public SSH key(s). Ubuntu has a great guide on the specifics of setting up your environment, I highly recommend you read it for specifics. Now that we have our Python application/package all finished up, and Launchpad and a new PPA setup to receive our Debian package it’s time to create the necessary artifacts for making a deb.
MakeUseOf
makeuseof.com › home › linux › how to create deb packages for debian/ubuntu
How to Create DEB Packages for Debian/Ubuntu
June 8, 2022 - DEB files in Debian-based operating systems like Ubuntu and Kali Linux are equivalent to the EXE files found in Windows. Here's how you can develop your own DEB packages for a Debian-based Linux distro. Preparing a Debian package requires some programs. To begin, install these utilities on your system: sudo apt install build-essential binutils lintian debhelper dh-make ...