How we build the library, and what we can do with the make file.
We use GNU build:
autoreconf -i
./configure
make
The configure script support options.
Some basic options come from autoconf and some are specific to our project.
Use help to see more information:
./configure --help
The make file has many targets and parameters.
Use help to see more information:
make help
We provide libraries and wrapper libraries for scripting.
You can generate packages for installation.
For Debian and Ubuntu packages:
make deb
For Red Hat packages (RPM):
make rpm
For Arch Linux packages:
make pkg
To install on Gentoo:
make gentoo