Suppress “Entering/Leaving Directory” Messages in Recursive Make
When running make recursively with $(MAKE) or make -C, you’ll see verbose messages like “Entering directory” and “Leaving directory” for each subdirectory. These messages clutter the build output and make it harder to spot actual errors. The Quick Fix Pass –no-print-directory to make: make –no-print-directory Or set it in your Makefile: .MAKEFLAGS: –no-print-directory Suppressing via…
