1 Office development kit - implements the first step on the way to the LibreOffice SDK tarball.
3 Part of the SDK; to build you need to add --enable-odk.
9 * See <https://api.libreoffice.org/docs/install.html> how to set up the SDK.
11 ** When asked about it during configuration, tell the SDK to do automatic
12 deployment of the example extensions that get built.
14 * In a shell set up for SDK development, build (calling "make") and test
15 (following the instructions given at the end of each "make" invocation) each
16 of the SDK's examples/ sub-directories.
18 ** An example script to build (though not test) the various examples in batch
21 find examples \( -type d -name nativelib -prune \) -o \
22 \( -name Makefile -a -print -a \( -execdir make \; -o -quit \) \)
24 (Note that one of the example extensions asks you to accept an example
25 license on stdin during deployment.)