我试图使用GCC (linux)与makefile编译我的项目。

我得到了以下错误,似乎无法在这种情况下破译:

"No rule to make target 'vertex.cpp', needed by 'vertex.o'.  Stop."

这是生成文件:

a.out: vertex.o edge.o elist.o main.o vlist.o enode.o vnode.o
    g++ vertex.o edge.o elist.o main.o vlist.o enode.o vnode.o

main.o: main.cpp main.h
    g++ -c main.cpp

vertex.o: vertex.cpp vertex.h
    g++ -c vertex.cpp

edge.o: edge.cpp edge.h
    g++ -c num.cpp

vlist.o: vlist.cpp vlist.h
    g++ -c vlist.cpp

elist.o: elist.cpp elist.h
    g++ -c elist.cpp

vnode.o: vnode.cpp vnode.h
    g++ -c vnode.cpp

enode.o: enode.cpp enode.h
    g++ -c node.cpp

当前回答

如果你试图构建John the Ripper“bleed -jumbo”,并得到类似“make: *** No rule to make target 'linux-x86-64'”这样的错误。尝试运行以下命令:./configure && make

其他回答

这通常是因为您没有一个名为vertex.cpp的文件可用。检查:

该文件存在。 你在正确的目录下。

除此之外,我没有什么建议了。也许你能给我们一份那个目录的目录清单。

在我的情况下,路径没有设置在VPATH,添加后的错误消失了。

真的是这样吗?请记住,Makefile语法支持空格,并且需要制表符来缩进操作下的命令。

一个常见的错误可能是错别字在另一个文件的名称。

你的例子很简单,但有时可能会混淆 make本身的信息。让我们考虑一个例子。

我的文件夹内容是:

$ ls -1
another_file
index.md
makefile

而我的makefile是这样的

all: index.html

%.html: %.md wrong_path_to_another_file
    @echo $@ $<

尽管我有索引。Md它应该在哪里,没有错误的名字,从make的消息将是

make: *** No rule to make target `index.html', needed by `all'.  Stop.

说实话,这个信息令人困惑。它只是说,没有规则。实际上,这意味着规则是错误的,但由于通配符(模式)规则使无法确定究竟是什么导致了问题。

让我们稍微修改一下makefile,也就是说用显式规则替换模式:

index.html: index.md wrong_path_to_another_file

现在我们得到的信息是:

make: *** No rule to make target `wrong_path_to_another_file', needed by `index.html'.  Stop.

奇迹!可以得出以下结论:

make消息依赖于规则,并不总是指向问题的根源 makefile中可能存在与此消息所指定的不同的其他问题

现在我们提出了检查规则中其他依赖项的想法:

all: index.html

%.html: %.md another_file
    @echo $@ $<

只有这样,我们才能得到想要的结果:

$ make
index.html index.md

在我的例子中,源文件和/或旧目标文件被半崩溃的IDE或停止正常工作的备份云服务锁定(只读)。重新启动与文件夹结构相关联的所有程序和服务就解决了这个问题。