I have a makefile that I run and I do not want it to exit if there is an error during the compilation of a particular file. I want it to continue compiling other files. Is this possible? If yes how? |
Based on your other question, I assume this question is about building a Wireshark dissector. If so, then the answer to your question is:
which will tell you to run make with option -k: -k, --keep-going Continue as much as possible after an error. While the target that failed, and those that depend on it, cannot be remade, the other dependencies of these targets can be processed all the same. Regards |
A makefile for what? If this is for Wireshark, please give some more details, if not, then the question is not relevant for Ask Wireshark.