docs/reference/Makefile.am
changeset 0 bc8c9a11cbfc
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/docs/reference/Makefile.am	Wed Oct 10 22:58:21 2012 +0100
     1.3 @@ -0,0 +1,95 @@
     1.4 +## Process this file with automake to produce Makefile.in
     1.5 +
     1.6 +# We require automake 1.6 at least.
     1.7 +AUTOMAKE_OPTIONS=1.6
     1.8 +
     1.9 +# This is a blank Makefile.am for using gtk-doc.
    1.10 +# Copy this to your project's API docs directory and modify the variables to
    1.11 +# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
    1.12 +# of using the various options.
    1.13 +
    1.14 +# The name of the module, e.g. 'glib'.
    1.15 +DOC_MODULE=libxexpr
    1.16 +
    1.17 +# Uncomment for versioned docs and specify the version of the module, e.g. '2'.
    1.18 +#DOC_MODULE_VERSION=2
    1.19 +
    1.20 +
    1.21 +# The top-level SGML file. You can change this if you want to.
    1.22 +DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.xml
    1.23 +
    1.24 +# The directory containing the source code. Relative to $(srcdir).
    1.25 +# gtk-doc will search all .c & .h files beneath here for inline comments
    1.26 +# documenting the functions and macros.
    1.27 +# e.g. DOC_SOURCE_DIR=../../../gtk
    1.28 +DOC_SOURCE_DIR=../../libxexpr
    1.29 +
    1.30 +# Extra options to pass to gtkdoc-scangobj. Not normally needed.
    1.31 +SCANGOBJ_OPTIONS=
    1.32 +
    1.33 +# Extra options to supply to gtkdoc-scan.
    1.34 +# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
    1.35 +SCAN_OPTIONS=--rebuild-types --rebuild-sections
    1.36 +
    1.37 +# Extra options to supply to gtkdoc-mkdb.
    1.38 +# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
    1.39 +MKDB_OPTIONS=--sgml-mode --output-format=xml --name-space=xexpr
    1.40 +
    1.41 +# Extra options to supply to gtkdoc-mktmpl
    1.42 +# e.g. MKTMPL_OPTIONS=--only-section-tmpl
    1.43 +MKTMPL_OPTIONS=
    1.44 +
    1.45 +# Extra options to supply to gtkdoc-mkhtml
    1.46 +MKHTML_OPTIONS=
    1.47 +
    1.48 +# Extra options to supply to gtkdoc-fixref. Not normally needed.
    1.49 +# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
    1.50 +FIXXREF_OPTIONS=
    1.51 +
    1.52 +# Used for dependencies. The docs will be rebuilt if any of these change.
    1.53 +# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
    1.54 +# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
    1.55 +HFILE_GLOB=$(top_srcdir)/libxexpr/*.h
    1.56 +CFILE_GLOB=$(top_srcdir)/libxexpr/*.c
    1.57 +
    1.58 +# Header files to ignore when scanning.
    1.59 +# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
    1.60 +IGNORE_HFILES=xexpr.h xexprprivate.h
    1.61 +
    1.62 +# Images to copy into HTML directory.
    1.63 +# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
    1.64 +HTML_IMAGES=
    1.65 +
    1.66 +# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
    1.67 +# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
    1.68 +content_files=version.xml implementation_defined_behaviour.xml \
    1.69 +    language_extensions.xml xexpr.xml
    1.70 +
    1.71 +# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
    1.72 +# These files must be listed here *and* in content_files
    1.73 +# e.g. expand_content_files=running.sgml
    1.74 +expand_content_files=
    1.75 +
    1.76 +# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
    1.77 +# Only needed if you are using gtkdoc-scangobj to dynamically query widget
    1.78 +# signals and properties.
    1.79 +# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
    1.80 +# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
    1.81 +GTKDOC_CFLAGS=
    1.82 +GTKDOC_LIBS=
    1.83 +
    1.84 +# This includes the standard gtk-doc make rules, copied by gtkdocize.
    1.85 +include $(top_srcdir)/gtk-doc.make
    1.86 +
    1.87 +# Other files to distribute
    1.88 +# e.g. EXTRA_DIST += version.xml.in
    1.89 +EXTRA_DIST+=version.xml.in
    1.90 +
    1.91 +# Files not to distribute
    1.92 +# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
    1.93 +# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
    1.94 +DISTCLEANFILES=$(DOC_MODULE).types $(DOC_MODULE)-sections.txt
    1.95 +
    1.96 +# Comment this out if you want your docs-status tested during 'make check'
    1.97 +TESTS_ENVIRONMENT=cd $(srcdir) &&
    1.98 +TESTS=$(GTKDOC_CHECK)