make: *** No targets specified and no makefile found. Stop.:由于没有找到 makefile,make 命令无法执行,这可能是因为 ./configure 没有成功执行,因为 ./configure 通常负责生成 makefile。
解决方法:
安装 autoconf 工具:
bash
# 如果是基于 Debian 或 Ubuntu 的系统
sudo apt-get install autoconf
# 如果是基于 Red Hat 或 CentOS 的系统
sudo yum install autoconf
# 或者使用 dnf(对于更新的 Red Hat 或 Fedora 系统)
sudo dnf install autoconf