[asterisk-dev] Starting development

Tilghman Lesher tilghman at meg.abyt.es
Wed Aug 29 08:49:09 CDT 2012


On Wed, Aug 29, 2012 at 4:02 AM, Giuseppe Longo <giuseppelng at gmail.com> wrote:
> If i edit a single .c source, before it's necessary rebuild every
> asterisk's module, right?

No.

> Example:
>
> ./configure, make, etc...
>
> Edit .c source, after, make main/asterisk.

Edit .c source, then run 'make'.  Make is a dependency checking
system.  It is designed to minimally recompile only those files which
need to be recompiled, not all of them.  There are cases, such as when
running configure modifies a core header file, that Make will
recompile every source file (because that core header is used by every
source file), but you never need to worry about those cases, because
Make handles all of those checks for you.

-Tilghman



More information about the asterisk-dev mailing list