Minor documentation fixes.
[hildon] / doc / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # This is a blank Makefile.am for using gtk-doc.
4 # Copy this to your project's API docs directory and modify the variables to
5 # suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
6 # of using the various options.
7
8 # The name of the module, e.g. 'glib'.
9 DOC_MODULE=hildon-libs
10
11 # The top-level SGML file. Change it if you want.
12 DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
13
14 # Extra options to supply to gtkdoc-scan.
15 SCAN_OPTIONS=
16
17 # Extra options to pass to gtkdoc-scanobj or gtkdoc-scangobj.
18 SCANOBJ_OPTIONS=--type-init-func="gtk_type_init(0)"
19
20 # The directory containing the source code. Relative to $(srcdir).
21 # gtk-doc will search all .c & .h files beneath here for inline comments
22 # documenting functions and macros.
23 DOC_SOURCE_DIR=../hildon-widgets
24
25 # Used for dependencies.
26 HFILE_GLOB=$(top_srcdir)/hildon-widgets/*.h
27 CFILE_GLOB=$(top_srcdir)/hildon-widgets/*.c
28
29 # Header files to ignore when scanning.
30 IGNORE_HFILES = \
31                 hildon-app-private.h            \
32                 hildon-grid-item-private.h      \
33                 hildon-volumebar-private.h      \
34                 hildon-volumebar-range.h        \
35                 hildon-window-private.h
36
37 # CFLAGS and LDFLAGS for compiling scan program. Only needed if 
38 # $(DOC_MODULE).types is non-empty.
39 INCLUDES = $(GTK_CFLAGS) -I$(top_srcdir) $(GNOME_VFS_CFLAGS)
40
41 GTKDOC_LIBS = $(GTK_LIBS) ../hildon-widgets/libhildonwidgets.la 
42
43 # Extra options to supply to gtkdoc-mkdb.
44 MKDB_OPTIONS=--sgml-mode --output-format=xml
45
46 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
47 content_files =
48
49 # Images to copy into HTML directory.
50 HTML_IMAGES =
51
52 # Extra options to supply to gtkdoc-fixref.
53 FIXXREF_OPTIONS=
54
55 include $(top_srcdir)/gtk-doc.make