make[1]: Circular all <- all
Ok, two things:
1) all <- all means all the way. That's right, all is a prerequisite of all .
2) make[1] means that it is a recursive Make. Somewhere in your makefile there is a $(MAKE) all command (probably hidden by variable names, functions, arguments, etc.).
Does it help?
source share