Differences
This shows you the differences between two versions of the page.
development:module-makefile [2006/10/20 21:43] – created 86.121.131.153 | development:module-makefile [Unknown date] (current) – external edit (Unknown date) 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Module Makefiles and Building ====== | ||
+ | |||
+ | The Makefile in each module subdirectory is small and simple to use. If you do not have any extra libraries or make definitions required to build your module, you can take the template below and just drop it into the top level directory of your new module. | ||
+ | |||
+ | ===== Module directory structure ===== | ||
+ | |||
+ | All OpenSER modules are kept in the sip-server/ | ||
+ | |||
+ | ===== Template Makefile ===== | ||
+ | |||
+ | The following template is the minimum requirements to build your module. There are a few additional things you can include into the Makefile to customize it. | ||
+ | |||
+ | < | ||
+ | include ../ | ||
+ | auto_gen= | ||
+ | NAME=MyMod.so | ||
+ | LIBS= | ||
+ | |||
+ | include ../ | ||
+ | </ | ||
+ | |||
+ | The one and only required item is the **NAME** variable in the Makefile. You must set it to the final target name of the modules shared object. | ||
+ | |||
+ | ==== Additional Makefile variables ==== | ||
+ | |||
+ | There are few other makefile variables that you can override or append to in the Makefile to pass additional information to your build. | ||
+ | |||
+ | * LIBS - Add any linker options you require to build the module. This would include the // | ||
+ | * DEFS - Append any additional definitions you want to pass to the compiler when building your module. You can do this with the " | ||
+ | |||
+ | ===== Module documentation ===== | ||
+ | |||
+ | TBD | ||
+ | |||
+ | |||
+ | |||