My Eclipse CDT keeps complaining "make: *** no rule to make target all" when I am trying to compile the piece of code below:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!!!" << endl; // prints Hello World!!!
return 0;
}
Anyone knows how to solve this? I have read the post with the similar title: make: *** No rule to make target `all'. Stop. Eclipse error But none of those answers help...
Thanks a lot!
You need to change your project settings so that Eclipse-CDT manages your Makefiles for you.