我试图使用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

当前回答

根据我的经验,这个错误通常是由拼写错误引起的。

我今天收到这个错误。

make[1]: ***没有创建目标maintenaceDialog.cpp'的规则,maintenacedialog .o'需要。停止。

在我的例子中,这个错误只是一个拼写错误。MAINTENANCE这个词缺了第三个N。

还要检查文件名的拼写。

其他回答

当我忘记向我的git存储库添加新文件时,在Travis内部发生了这个错误。愚蠢的错误,但我可以看出这是相当普遍的。

在我的例子中,这是由于Makefile中的多行规则错误。我是这样写的:

OBJS-$(CONFIG_OBJ1)            += file1.o file2.o \
                                  file3.o file4.o \
OBJS-$(CONFIG_OBJ2)            += file5.o 
OBJS-$(CONFIG_OBJ3)            += file6.o
...

CONFIG_OBJ1的规则中文件列表末尾的反斜杠导致了这个错误。应该是这样的:

OBJS-$(CONFIG_OBJ1)            += file1.o file2.o \
                                  file3.o file4.o
OBJS-$(CONFIG_OBJ2)            += file5.o
...

打印此消息的更常见原因是您忘记包含源文件所在的目录。因此,gcc“认为”这个文件不存在。

您可以使用-I参数向gcc添加目录。

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

根据我的经验,这个错误通常是由拼写错误引起的。

我今天收到这个错误。

make[1]: ***没有创建目标maintenaceDialog.cpp'的规则,maintenacedialog .o'需要。停止。

在我的例子中,这个错误只是一个拼写错误。MAINTENANCE这个词缺了第三个N。

还要检查文件名的拼写。