I'm wondering if there's a way to implement the similar functionality as you get in bash scripts using `trap', but for gmake, such that if the user presses CTRL-C, or if make itself fails, it can call a particular target or macro.
|
|
|||
|
|
|
No. GNU make’s signal handling already leaves a lot to be desired. From within its signal handler, it calls functions like |
||
|
|
|
|
No. As far as I know there is no such functionality. |
||
|
|
|
|
make produces return codes. As far as I can remember right now, it returns 0 for success, 2 for failure (please check the documentation). Therefore, would it be enough for you to wrap make inside a shell script for example? |
||
|
