[Solved] What’s the meaning of default: classes in this makefile?
The meaning of the word “default” is “implicit”, or “that if none is given”. Here in makefiles, it would be if you call >make without a goal explicitly stated, then the first target in your makefile (other than ones starting with .) is updated. So it makes sense for the first such target to be … Read more