automake
1.1、automake简介
是什么 ?:a tool for automatically generating Makefile.in
开发语言:Perl
开发组织:GNU
官方主页:https://www.gnu.org/software/automake
1.2、通过包管理器安装automake
操作系统包管理器安装命令
WindowsChocolateychoco install -y automake
macOSHomeBrewbrew install automake
GNU/LinuxHomeBrewbrew install automake
aptsudo apt-get install -y automake
CentOSyumsudo yum install -y automake
dnfsudo dnf install -y automake
openSUSEzyppersudo zypper install -y automake
Alpine Linuxapksudo apk add automake

Arch Linux

ArcoLinux

Manjaro Linux

pacmansudo pacman -Syyu --noconfirm
sudo pacman -S    --noconfirm automake
Gentoo LinuxPortagesudo emerge automake
1.3、通过编译源码安装automake 

step1、安装依赖

所有时Terminal + Shell + GNU CoreUtils
下载时cURL
解压时tar + xz
编译时PerlToolSetautoconfgmake
运行时PerlToolSet

step2、使用curl命令下载automake源码包 (

curl -LO https://mirrors.tuna.tsinghua.edu.cn/gnu/automake/automake-1.16.tar.xz

step3、使用tar解压automake源码包

tar vxf automake-1.16.tar.xz

step4、进入automake-1.16目录

cd automake-1.16

step5、查看automake-1.16目录中的内容

step6、创建构建目录,并进入该目录

mkdir build && cd build

step7、使用../configure配置编译参数

../configure是一个可执行的POSIX sh脚本,用它 配置后会产生gmake的配置文件Makefile

../configure的使用格式如下:

../configure [option]... [VAR=VALUE]...
option说明
--help    | -h查看../configure的使用帮助
--version | -V查看../configure是哪个版本的autoconf生成的
--quiet   | -q | --silent不输出checking...这些信息
--prefix=DIR指定安装目录。默认是/usr/local/
--host=HOST
设置目标程序运行的CPU平台
一般不需要设置,除非你想要交叉编译
默认与与宿主机一样
--enable-FEATURE[=yes|no]
yes:开启FEATURE
no :关闭FEATURE
--enable-option-checking[=yes|no]是否检查有无不认识的--enable-FEATURE--with-PACKAGE参数
--enable-silent-rules[=yes|no]
yes相当于make V=0
no 相当于make V=1

enable-FEATURE对应的选项,还有disable-FEATUREdisable-FEATURE相当于enable-FEATURE=no

示例:

../configure --prefix=/usr

step8、使用make命令进行编译、安装

make && sudo make install

注意:

GNU/Linux中编译的时候,很可能会出现如下的错误:

这句话的意思:在执行help2man命令的时候,没有传入--help参数, 导致出现了错误。也就是说在执行help2man命令的时候一定要传入--help参数, 因为这个错误是在执行gmake命令时候出现的,那就说明这个错误是Makefile中出现的, 我们看看Makefile中哪个地方使用了help2man命令:

只有两个地方调用了help2man命令,其实很容易猜测出来,是第709行上出问题了,因为从help2man这个命令的名字就可以猜测出来,这是要把帮助信息写到man文件中, 而第709行上没有使用--help参数,只有输出,显然,它并不知道要输出什么, 所以这个命令运行失败了。上面也给我们了解决方法,就是调用help2man的时候加上--no-discard-stderr参数, 加上这个参数就不会导致失败了。

1.4、automake中包含的命令