gnumake
gnumake 4.4.1
Tool to control the generation of non-source files from sources
<rendered-html><p>Make is a tool which controls the generation of executables and other non-source files of a program from the program’s source files.</p> <p>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 the program.</p> </rendered-html>
https://www.gnu.org/software/make/GNU General Public License v3.0 or later
main program: makeprograms: make
Maintainers
Platforms (80)
armv7l-linuxmmix-mmixwarei686-noneriscv64-linuxarmv6l-nonearm-noneriscv32-nonex86_64-darwin
Install
Copy into your configuration
NixOS (configuration.nix)
environment.systemPackages = with pkgs; [ gnumake ];
Ad-hoc shell
nix-shell -p gnumake
Flake (nix run)
nix run nixpkgs#gnumake