Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
tutorials:makefile-system [2009/07/03 11:28]
miconda
tutorials:makefile-system [2010/01/15 09:33]
andrei example of saving parameters with make cfg
Line 11: Line 11:
 <code> <code>
 make all make all
 +</code>
 +
 +===== Install Everything =====
 +
 +<code>
 +make install
 +</code>
 +
 +===== Clean Source Tree =====
 +
 +  * clean object files
 +
 +<code>
 +make clean
 +</code>
 +
 +  * clean all generated files
 +
 +<code>
 +make proper
 </code> </code>
  
Line 19: Line 39:
 make modules_k make modules_k
 make modules_s make modules_s
 +</code>
 +
 +===== Generate Config for Makefile =====
 +
 +<code>
 +make cfg
 +</code>
 +
 +  * add extra defines in makefile config
 +
 +<code>
 +make EXTRA_DEFS="-DSTATISTICS" cfg
 +</code>
 +
 +  * cfg for Makefile is config.mak
 +  * you can edit it and tune as you wish before compilation
 +
 +===== Enable Module =====
 +
 +If the module is not compiled by default:
 +
 +  * edit **modules.lst**
 +  * remove the name of the module from **exclude_modules** variable
 +
 +or type: <code>make modules-cfg include_modules=<name_of_the_module></code> .
 +
 +The same can be accomplished with <code>make cfg include_modules=<name_of_the_module> </code>
 +, but this will remake the whole config. 
 +
 +===== Combined Parameters =====
 +
 +Various parameters can be given to make command, an example:
 +
 +<code c>
 +make prefix=/opt/sip-router \
 +     SCTP=1 \
 +     CC_EXTRA_OPTS=-I/usr/gnu/include \
 +     group_include="standard postgres presence" \
 +     include_modules="snmpstats perl tls" \
 +     all
 +
 +</code>
 +
 +
 +or you can save them in the config (they will be used by future make invocations) by givin the same parameters to make cfg:
 +<code c>
 +make cfg prefix=/opt/sip-router \
 +     SCTP=1 \
 +     CC_EXTRA_OPTS=-I/usr/gnu/include \
 +     group_include="standard postgres presence" \
 +     include_modules="snmpstats perl tls"
 </code> </code>
  

Navigation

Wiki

Other

QR Code
QR Code tutorials:makefile-system (generated for current page)