|
Stopping recursive make's on error
I've been working on a project and using a test on $? -ne 0; to test the success status of recursive make calls into sub-directories. I just noticed that when I have a typo in the g++ command make still exits successfully. Is there a better way to trap/check for errors in a recursive make call?
|