如何修复项目上的makefiles错误

如何修复项目上的makefiles错误,makefile,omnet++,veins,Makefile,Omnet++,Veins,当我构建我的项目时,我有以下错误: make[1]: *** [../out/gcc-release/src/mySimulation] Error 1 Makefile:100: recipe for target '../out/gcc-release/src/mySimulation' failed make[1]: Leaving directory '/home/nai/omnet/omnetpp-5.2.1/myWorkspace/mySimulation/s

当我构建我的项目时,我有以下错误:

    make[1]: *** [../out/gcc-release/src/mySimulation] Error 1
    Makefile:100: recipe for target '../out/gcc-release/src/mySimulation' failed
    make[1]: Leaving directory '/home/nai/omnet/omnetpp-5.2.1/myWorkspace/mySimulation/src'
    Makefile:2: recipe for target 'all' failed
    make: *** [all] Error 2
生成文件中出现错误的代码部分: src文件夹中的makefile:

        @$(MKPATH) $O
将文件放入out文件夹

       all: checkmakefiles
cd src && $(MAKE)

我清理了项目并重建了它,但它不起作用。有人能帮我吗

你没有告诉我们实际的错误。您显示的消息仅表示某些操作make作为其配方的一部分调用失败,并退出,错误代码为1。在此之前,您需要查看错误消息,以了解失败的原因和原因。一般来说,最好看第一个错误,而不是最后一个错误;有时第一个错误会层叠而来,并导致更多错误。你是对的!我只关注我在帖子上复制的行,因为它们是红色的,而错误是在顶部行的所有字母中指定的!谢谢