没有规则进行目标安装(Kubuntu Konsole)
No rule to make target Install (Kubuntu Konsole)
我正在尝试安装以下数据库:aleda-latest.zip
在 Konsole 中输入以下命令:
$ make install
output:
bzcat ne_vars.fr.dat.bz2 > ne_vars.fr.dat
bzcat ne_refs.fr.dat.bz2 > ne_refs.fr.dat
make: *** No rule to make target« /usr/local/share/alexina/fr », needed by « lefff.dat ». Stop.
- 好像是什么问题?
- 我是不是漏了步骤?
该 makefile 中的一些目标将该目录列为先决条件,但没有目标告诉 make 如何在 makefile 中创建该目录。
要么是 makefile 损坏了,要么是它期望其他软件已经为它创建了那个目录(大概 alexina
相关)。
我正在尝试安装以下数据库:aleda-latest.zip
在 Konsole 中输入以下命令:
$ make install
output:
bzcat ne_vars.fr.dat.bz2 > ne_vars.fr.dat
bzcat ne_refs.fr.dat.bz2 > ne_refs.fr.dat
make: *** No rule to make target« /usr/local/share/alexina/fr », needed by « lefff.dat ». Stop.
- 好像是什么问题?
- 我是不是漏了步骤?
该 makefile 中的一些目标将该目录列为先决条件,但没有目标告诉 make 如何在 makefile 中创建该目录。
要么是 makefile 损坏了,要么是它期望其他软件已经为它创建了那个目录(大概 alexina
相关)。