vote up 1 vote down star

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.

flag
+1 for the interesting question, even though what you are doing sounds like a bad idea. – finnw Jun 10 at 7:32

3 Answers

vote up 1 vote down check

No. GNU make’s signal handling already leaves a lot to be desired. From within its signal handler, it calls functions like printf that are not safe to be called from within a signal handler. I have seen this cause problems, for example .DELETE_ON_ERROR rules don’t always run if stderr is redirected to stdout.

link|flag
vote up 1 vote down

No. As far as I know there is no such functionality.

link|flag
vote up 1 vote down

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?

link|flag
I can do that, but trying to avoid it if possible, it's self-contained and I'm trying to keep it that way. – Cyrus Jun 10 at 11:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.