我无法编译下一个程序

时间:2018-07-03 18:55:56

标签: ubuntu makefile compilation

我试图执行以下程序,但发现下一个错误:

$ make install

rm -f /usr/games/install /usr/share/man/man6/greed.6
cp greed /usr/games
cp: can not perform `stat 'on' greed ': The file or directory does not exist
Makefile: 19: failure in the instructions for the 'install' objective

按照自述文件的建议安装xmlo之后的所有步骤 在自述文件中,它表示以下内容: “要安装Greed,只需编辑Makefile来配置您的系统类型” 这是什么意思?

https://gitlab.com/esr/greed

我试图在ubuntu 18.04操作系统上执行此操作

谢谢!

1 个答案:

答案 0 :(得分:1)

此生成文件未将目标greed列为目标install的先决条件。因此,在运行install目标之前,您必须要求make自己构建它:

make
make install