docs/Makefile.am
author J. Ali Harlow <ali@juiblex.co.uk>
Wed Apr 29 17:00:01 2009 +0100 (2009-04-29)
changeset 361 2523d03a840e
parent 294 d7ecddf38c3d
permissions -rw-r--r--
Add support for preloading lua modules. This is useful both when
providing lua bindings to applications based on librazor and when
producing static binaries using librazor (where otherwise the lua
POSIX library would need to be included as an additional dynamic
object).
     1 # The name of the module.
     2 DOC_MODULE=razor
     3 
     4 # The top-level SGML file.
     5 DOC_MAIN_SGML_FILE=razor-docs.xml
     6 
     7 # Extra options to supply to gtkdoc-scan
     8 IGNORE_HFILES = config.h razor-internal.h
     9 
    10 # The directory containing the source code. Relative to $(srcdir)
    11 DOC_SOURCE_DIR=$(top_srcdir)/librazor
    12 
    13 # Used for dependencies
    14 HFILE_GLOB=$(top_srcdir)/librazor/*.h
    15 CFILE_GLOB=$(top_srcdir)/librazor/*.c
    16 
    17 # Extra options to supply to gtkdoc-mkdb
    18 MKDB_OPTIONS=--sgml-mode --output-format=xml
    19 
    20 # Extra options to supply to gtkdoc-mktmpl
    21 MKTMPL_OPTIONS=
    22 
    23 if ENABLE_GTK_DOC
    24 include $(top_srcdir)/gtk-doc.make
    25 else
    26 EXTRA_DIST =
    27 endif
    28 
    29 # Version information for marking the documentation
    30 EXTRA_DIST += version.xml.in
    31 
    32 docsdir = $(datadir)/doc/razor
    33 
    34 content_files =					\
    35 	package-set.xml				\
    36 	solver.xml
    37