How to manually call another target from a make target?
Note: This answer focuses on the aspect of a robust recursive invocation of a different target in a given makefile. To complement Jack Kelly’s helpful answer, here’s a GNU makefile snippet that demonstrates the use of $(MAKE) to robustly invoke a different target in the same makefile (ensuring that the same make binary is called, … Read more