b518f765cae76b8217653d5bdc404de1db39bb99
[platform/upstream/at-spi2-core.git] / doc / libatspi / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # We require automake 1.6 at least.
4 AUTOMAKE_OPTIONS = 1.6
5
6 # The name of the module, e.g. 'glib'.
7 DOC_MODULE=libatspi
8
9 # Uncomment for versioned docs and specify the version of the module, e.g. '2'.
10 #DOC_MODULE_VERSION=2
11
12
13 # The top-level SGML file. You can change this if you want to.
14 DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
15
16 # Directories containing the source code, relative to $(srcdir).
17 # gtk-doc will search all .c and .h files beneath these paths
18 # for inline comments documenting functions and macros.
19 # e.g. DOC_SOURCE_DIR=../../../gtk ../../../gdk
20 DOC_SOURCE_DIR=$(top_srcdir)/atspi
21
22 # Extra options to pass to gtkdoc-scangobj. Not normally needed.
23 SCANGOBJ_OPTIONS=
24
25 # Extra options to supply to gtkdoc-scan.
26 # e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
27 SCAN_OPTIONS=
28
29 # Extra options to supply to gtkdoc-mkdb.
30 # e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
31 MKDB_OPTIONS=--sgml-mode --output-format=xml
32
33 # Extra options to supply to gtkdoc-mktmpl
34 # e.g. MKTMPL_OPTIONS=--only-section-tmpl
35 MKTMPL_OPTIONS=
36
37 # Extra options to supply to gtkdoc-mkhtml
38 MKHTML_OPTIONS=
39
40 # Extra options to supply to gtkdoc-fixref. Not normally needed.
41 # e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
42 FIXXREF_OPTIONS=
43
44 # Used for dependencies. The docs will be rebuilt if any of these change.
45 # e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
46 # e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
47 HFILE_GLOB=$(top_srcdir)/atspi/*.h
48 CFILE_GLOB=$(top_srcdir)/atspi/*.c
49
50 # Extra header to include when scanning, which are not under DOC_SOURCE_DIR
51 # e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h
52 EXTRA_HFILES=
53
54 # Header files to ignore when scanning. Use base file name, no paths
55 # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
56 IGNORE_HFILES=
57
58 # Images to copy into HTML directory.
59 # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
60 HTML_IMAGES=
61
62 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
63 # e.g. content_files=running.sgml building.sgml changes-2.0.sgml
64 content_files=
65
66 # SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
67 # These files must be listed here *and* in content_files
68 # e.g. expand_content_files=running.sgml
69 expand_content_files=
70
71 # CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
72 # Only needed if you are using gtkdoc-scangobj to dynamically query widget
73 # signals and properties.
74 # e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
75 # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
76 GTKDOC_CFLAGS=$(GLIB_CFLAGS) $(GOBJ_CFLAGS) $(DBUS_CFLAGS)
77 GTKDOC_LIBS=$(GLIB_LIBS) $(GOBJ_LIBS) $(DBUS_LIBS) $(top_builddir)/atspi/libatspi.la
78
79 # This includes the standard gtk-doc make rules, copied by gtkdocize.
80 include $(top_srcdir)/gtk-doc.make
81
82 # Other files to distribute
83 # e.g. EXTRA_DIST += version.xml.in
84 EXTRA_DIST +=
85
86 # Files not to distribute
87 # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
88 # for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
89 #DISTCLEANFILES +=
90
91 # Comment this out if you want your docs-status tested during 'make check'
92 if ENABLE_GTK_DOC
93 #TESTS_ENVIRONMENT = cd $(srcdir) &&
94 #TESTS = $(GTKDOC_CHECK)
95 endif
96
97 -include $(top_srcdir)/git.mk