Do you mean the &quot;apps&quot; directory? I don&#39;t show an &quot;addon&quot; directory in my installation.<br><br> Here&#39;s an example of how we modified our apps/Makefile by appending this to the end of the file:<br>
<br>app_ourapp.so: app_ourapp.o ourdir/ourapp_file1.o ourdir/ourapp_file2.o<br>        $(CC) $(SOLINK) -o $@ $^ -lexternallibraryweneeded<br><br>Note that we did not need to make any changes to menuselect to get our application module running. By default Makefile already finds *.c in the apps directory and you don&#39;t need to do anything to make it build yours if you&#39;re using just a single source file. We needed to modify the Makefile because we have multiple source files inside apps/ourdir (ourapp_file1.c and ourapp_file2.c) and we needed to dynamically link to an outside library for all the symbols to resolve. As you can see, you may need something entirely different from someone else, so it&#39;s not straightforward to simply write &quot;instructions on how to change the Makefile&quot;... hopefully this gives you some ideas to play around with tough.<br>
<br>Regards,<br>- Sean<br><br><div class="gmail_quote">On Wed, Dec 19, 2012 at 4:36 PM, Meadows Hoa <span dir="ltr">&lt;<a href="mailto:meadows_sub@yahoo.com" target="_blank">meadows_sub@yahoo.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div style="font-size:10pt;font-family:times new roman,new york,times,serif"><div>Are there any instructions on how to change the Makefile in the addon directory and also the menuselect options to add a new module into the addon directory in Asterisk?<br>
</div></div></div><br>--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
<br>
asterisk-dev mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-dev" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-dev</a><br></blockquote></div><br>