【发布时间】:2017-12-23 08:31:53
【问题描述】:
我在 Eclipse 中有 c++ makefile 项目。 Makefile 包含行:
executable:
$(COMPILER) $(CFLAGS) aaa.cpp -o aaa.o
$(COMPILER) aaa.o -o aaa.exe -ldl
Eclipse 对可执行文件不满意并显示错误;
make all
make: *** No rule to make target 'all'. Stop.
如何告诉 Eclipse 使用 executable 而不是 all?
【问题讨论】: