<br><br><div class="gmail_quote">On Mon, Dec 12, 2011 at 9:17 AM, contemplating zombie <span dir="ltr">&lt;<a href="mailto:contemplatingzombie@gmail.com">contemplatingzombie@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Just to clarify more, if I put my code in something like:<div>#ifdef CONFIG_FOOBAR</div><div>my code</div><div>#endif</div><div><br></div><div>Then my module&#39;s Makefile should check if this parameter is defined in the &quot;.config&quot; file. How should I modify my Makefile to do that?<div>
<div class="h5"><br>
<br><div class="gmail_quote">On Sun, Dec 11, 2011 at 10:44 PM, contemplating zombie <span dir="ltr">&lt;<a href="mailto:contemplatingzombie@gmail.com" target="_blank">contemplatingzombie@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<div><br></div><div>I want to conditionally compile some code in module if CONFIG_FOOBAR is defined.</div><div>How can I add this check to my module&#39;s makefile?</div><div><br></div><div>-Thanks.</div>
</blockquote></div><br></div></div></div>
</blockquote></div><br><div>If I understand correctly, you want some part of your module to be compiled only</div><div>when CONFIG_FOOBAR is defined. You already mentioned the solution yourself!:</div><div>Just put that code within #ifdef CONFIG_FOOBAR and #endif</div>
<div>That would check the .config file and see if CONFIG_FOOBAR is defined; and only if it</div><div>is defined, that code piece gets compiled, else it will simply get stripped off.</div><div><br></div><div>Regards,</div>
<div>Srivatsa S. Bhat</div>