Juan David Asked: 2019-03-14 19:55:53 +0800 CST2019-03-14 19:55:53 +0800 CST 2019-03-14 19:55:53 +0800 CST 如何将 Makefile.am 转换为 Makefile.in? 772 我正在尝试从 github 安装 gnuplot 5.3。我在跑 aclocal autoheader autoconf automake 包位置内。 这给出了一个错误,因为automake正在寻找 Makefile.in 并且我有一堆 Makefile.am 文件,据说automake应该将 .am 文件更改为 .in 但这显然不会发生。由于同样的原因无法运行./configure,如何让.am文件更改为.in? compiling gnuplot automake autoconf 1 个回答 Voted Best Answer N0rbert 2019-03-15T12:21:00+08:002019-03-15T12:21:00+08:00 首先请注意 GNU Plot被打包在所有 Ubuntu 版本中: 但是您可以使用以下过程从 GitHub 编译 GNU Plot: 在软件和更新( ) 中启用源代码存储库并安装编译时依赖项,以完全确保在编译时满足所有依赖项software-properties-gtk sudo apt-get build-dep gnuplot 安装所需工具 sudo apt-get install git lua5.1 克隆存储库并./prepare首先运行脚本(!!!重要步骤!!!) git clone https://github.com/gnuplot/gnuplot.git cd gnuplot ./prepare 然后运行所有常用工具: ./configure make #make check # shows various very beautiful plots sudo make install 注意:最好在最后一步使用Checkinstall ( ),自行决定。sudo make checkinstall install
首先请注意 GNU Plot被打包在所有 Ubuntu 版本中:
但是您可以使用以下过程从 GitHub 编译 GNU Plot:
在软件和更新( ) 中启用源代码存储库并安装编译时依赖项,以完全确保在编译时满足所有依赖项
software-properties-gtk
安装所需工具
克隆存储库并
./prepare
首先运行脚本(!!!重要步骤!!!)然后运行所有常用工具:
注意:最好在最后一步使用Checkinstall ( ),自行决定。
sudo make checkinstall install