Blame gtkdoc/Makefile.am

Packit 3ae693
## Process this file with automake to produce Makefile.in
Packit 3ae693
Packit 3ae693
# We require automake 1.6 at least.
Packit 3ae693
AUTOMAKE_OPTIONS = 1.6
Packit 3ae693
Packit 3ae693
# This is a blank Makefile.am for using gtk-doc.
Packit 3ae693
# Copy this to your project's API docs directory and modify the variables to
Packit 3ae693
# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
Packit 3ae693
# of using the various options.
Packit 3ae693
Packit 3ae693
# The name of the module, e.g. 'glib'.
Packit 3ae693
DOC_MODULE=libcanberra
Packit 3ae693
Packit 3ae693
# The top-level SGML file. You can change this if you want to.
Packit 3ae693
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
Packit 3ae693
Packit 3ae693
# The directory containing the source code. Relative to $(srcdir).
Packit 3ae693
# gtk-doc will search all .c & .h files beneath here for inline comments
Packit 3ae693
# documenting the functions and macros.
Packit 3ae693
# e.g. DOC_SOURCE_DIR=../../../gtk
Packit 3ae693
DOC_SOURCE_DIR=../src
Packit 3ae693
Packit 3ae693
# Extra options to pass to gtkdoc-scangobj. Not normally needed.
Packit 3ae693
SCANGOBJ_OPTIONS=
Packit 3ae693
Packit 3ae693
# Extra options to supply to gtkdoc-scan.
Packit 3ae693
# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
Packit 3ae693
SCAN_OPTIONS=
Packit 3ae693
Packit 3ae693
# Extra options to supply to gtkdoc-mkdb.
Packit 3ae693
# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
Packit 3ae693
MKDB_OPTIONS=--sgml-mode --output-format=xml
Packit 3ae693
Packit 3ae693
# Extra options to supply to gtkdoc-mktmpl
Packit 3ae693
# e.g. MKTMPL_OPTIONS=--only-section-tmpl
Packit 3ae693
MKTMPL_OPTIONS=
Packit 3ae693
Packit 3ae693
# Extra options to supply to gtkdoc-fixref. Not normally needed.
Packit 3ae693
# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
Packit 3ae693
FIXXREF_OPTIONS=
Packit 3ae693
Packit 3ae693
# Used for dependencies. The docs will be rebuilt if any of these change.
Packit 3ae693
# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
Packit 3ae693
# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
Packit 3ae693
HFILE_GLOB=
Packit 3ae693
CFILE_GLOB=
Packit 3ae693
Packit 3ae693
# Header files to ignore when scanning.
Packit 3ae693
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
Packit 3ae693
IGNORE_HFILES=
Packit 3ae693
Packit 3ae693
# Images to copy into HTML directory.
Packit 3ae693
# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
Packit 3ae693
HTML_IMAGES=
Packit 3ae693
Packit 3ae693
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
Packit 3ae693
# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
Packit 3ae693
content_files=
Packit 3ae693
Packit 3ae693
# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
Packit 3ae693
# These files must be listed here *and* in content_files
Packit 3ae693
# e.g. expand_content_files=running.sgml
Packit 3ae693
expand_content_files=
Packit 3ae693
Packit 3ae693
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
Packit 3ae693
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
Packit 3ae693
# signals and properties.
Packit 3ae693
# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
Packit 3ae693
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
Packit 3ae693
INCLUDES=
Packit 3ae693
GTKDOC_LIBS=
Packit 3ae693
Packit 3ae693
# This includes the standard gtk-doc make rules, copied by gtkdocize.
Packit 3ae693
include $(top_srcdir)/gtkdoc/gtk-doc.make
Packit 3ae693
Packit 3ae693
# Other files to distribute
Packit 3ae693
# e.g. EXTRA_DIST += version.xml.in
Packit 3ae693
EXTRA_DIST +=
Packit 3ae693
Packit 3ae693
# Files not to distribute
Packit 3ae693
# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
Packit 3ae693
# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
Packit 3ae693
#DISTCLEANFILES +=
Packit 3ae693
Packit 3ae693
# Comment this out if you want your docs-status tested during 'make check'
Packit 3ae693
#TESTS = $(GTKDOC_CHECK)
Packit 3ae693