I am running the following command:
make -f makefile.gcc
And the output is:
make: -c: Command not found
How can I find out which line is causing the error? The makefile is hundreds of lines long and there’s no way of figuring it out otherwise.
I tried the -d switch, but that didn’t print any useful information.
It seems like the problem is that the makefile contain paths with ‘\’ in them and since I’m running on Linux, that’s going to be a problem.
I’m still working on a solution for that.