当我尝试运行cpp项目时,遇到了运行时错误。
编译日志中显示以下消息:
mingw32-make.exe -f "D:\XXXXXXXXXXXXX\Makefile.win" all
mingw32-make.exe: Nothing to be done for 'all'.
在Makefile中,我找到了:
.PHONY: all all-before all-after clean clean-custom
all: all-before $(BIN) all-after
但我不明白错误究竟是什么以及“所有”
的功能是什么答案 0 :(得分:3)
这不是错误信息。
基本上它会告诉您all
目标(以及暗示的所有依赖关系 - all-before
,all-after
以及BIN
中的任何内容 已经是最新的,即make
无需运行任何命令。