summaryrefslogtreecommitdiffstats
path: root/doc/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* build: style cleanup in doc/Makefile.amThomas Haller2017-02-271-8/+11
|
* doc/Makefile.am: don't use asciidoc if disabledKir Kolyshkin2015-07-091-0/+4
| | | | | | | | | In case doc/configure.ac hasn't found asciidoc or any of its prerequisites (such as pygmentize), make shouldn't try to run it. One such case ("gendoc" target) is covered while the other ("%.html" target) is not. Fix it by adding a proper ifdef. Signed-off-by: Kir Kolyshkin <kir@openvz.org>
* doc: Split doc/ into separate packagesThomas Graf2012-10-191-62/+17
| | | | | | | | | | Separates all the documentation generation trickery to its own configure.in and allows to easily generate a pre built doc dist file for distribution. Arguments to configure will be passed on to doc/configure Signed-off-by: Thomas Graf <tgraf@redhat.com>
* doc: documentation restructuringThomas Graf2012-05-101-12/+9
| | | | | | | | | | - changes the modules hierarchy to better represent the set of libaries - list the header file that needs to be included - remove examples/doc from api ref that is included in the guide - add references to the guide - fix doxygen api linking for version 1.8.0 - readd doxygen mainpage to config file - fix a couple of doxygen doc bugs
* doc: Check documentation generation requirements with autoconfThomas Graf2012-05-091-1/+24
| | | | | | Adds --enable-doc/--disable-doc, if omitted doc will only be build if requirements are met. If explicitely enabled, configure script will fail if requirements are not met.
* Fix two bugs in 3.2.8/doc/Jeroen Roovers2012-05-071-1/+1
| | | | | | | | | | | | doc/Doxyfile.in: Refer to @top_srcdir@ instead of @src_dir@ doc/Makefile.in: Set .PHONY to api_ref instead of api_refs http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/dev-libs/libnl/files/ Cheers, jer
* remove dist lines for non existing filesThomas Graf2011-09-081-7/+0
|
* Include all files necessary to build documentation in distributionThomas Graf2011-08-111-0/+76
|
* more documentation updatesThomas Graf2011-07-211-3/+5
| | | | | | | | | - improved stylesheets for both doxygen and asciidoc - use of xml doxygen layout - python script to resolve <<foo>> asciidoc references to <<foo, title>> based on the target caption - graphics for netlink and netlink error headers - more link documentation
* Documentation updatesThomas Graf2011-07-181-2/+4
| | | | | | | - update to asciidoc 8.6.5 - added doc/README - switched to toc2 - started adding link documentation
* documentation updatesThomas Graf2011-07-141-8/+16
|
* Move to asciidocThomas Graf2011-03-311-1/+9
| | | | | | | | | | | | | | | | | | | | | | | The core library documentation has been converted to use asciidoc. It provides better flexibility in creating documentation such as tables and more powerful formatting rules. The doxygen based API reference remains and three scripts have been added to: - gen-tags.sh: extract tag information from doxygen reference - tags2dict.sh: generate a name=link dictionary file - doxygen-link.py: replace all references in the asciidoc documentation refering to API functions, struct, etc. with a link into the doxygen API reference. 'make gendoc' continue to generate all documentation. The following tools are required to generate documentation: - asciidoc - mscgen - asciidoc mscgen plugin - pygments - xmlstarlet
* Move to automake-based buildJan Engelhardt2009-06-221-0/+9
Issues solved: * PACKAGE_VERSION was abused for SOVERSION * unneeded DEP stage * did not support out-of-tree builds * no way to turn off silent mode * overriding CFLAGS at make time was not supported * no static libs were provided Signed-off-by: Jan Engelhardt <jengelh@medozas.de>