我试图执行以下程序,但发现下一个错误:
$ 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来配置您的系统类型” 这是什么意思?
我试图在ubuntu 18.04操作系统上执行此操作
谢谢!
答案 0 :(得分:1)
此生成文件未将目标greed
列为目标install
的先决条件。因此,在运行install
目标之前,您必须要求make自己构建它:
make
make install