「Linux下,安装GNU Make」

从发行版的源中直接安装

#!/bin/bash

# Kali GNU/Linux Rolling
apt-get install make

Linux下,使用源码编译安装(Compilation)

#!/bin/sh

tar -xf make-4.1.tar.gz

cd make-4.1

./configure --prefix=/usr/local

# 构建,make的构建需要make;
make && make install

安装的可执行程序

make
主程序文件,能自动确定出哪些程序包需要(重新)编译,然后执行相应的命令。

参考文献

LFS / Make: http://www.linuxfromscratch.org/lfs/view/7.10/chapter06/make.html