2006-08-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[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 MAINTAINERCLEANFILES = Makefile.in
9
10 # The name of the module, e.g. 'glib'.
11 DOC_MODULE=hildon-libs
12
13 # The top-level SGML file. Change it if you want.
14 DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
15
16 # Extra options to supply to gtkdoc-scan.
17 SCAN_OPTIONS=
18
19 # Extra options to pass to gtkdoc-scanobj or gtkdoc-scangobj.
20 SCANOBJ_OPTIONS=--type-init-func="gtk_type_init(0)"
21
22 # The directory containing the source code. Relative to $(srcdir).
23 # gtk-doc will search all .c & .h files beneath here for inline comments
24 # documenting functions and macros.
25 DOC_SOURCE_DIR=../hildon-widgets
26
27 # Used for dependencies.
28 HFILE_GLOB=$(top_srcdir)/hildon-widgets/*.h
29 CFILE_GLOB=$(top_srcdir)/hildon-widgets/*.c
30
31 # Header files to ignore when scanning.
32 IGNORE_HFILES = \
33                 hildon-app-private.h            \
34                 hildon-grid-item-private.h      \
35                 hildon-volumebar-private.h      \
36                 hildon-volumebar-range.h        \
37                 hildon-window-private.h
38
39 # CFLAGS and LDFLAGS for compiling scan program. Only needed if 
40 # $(DOC_MODULE).types is non-empty.
41 INCLUDES = $(GTK_CFLAGS) -I$(top_srcdir)
42
43 GTKDOC_LIBS = $(GTK_LIBS) ../hildon-widgets/libhildonwidgets.la 
44
45 # Extra options to supply to gtkdoc-mkdb.
46 MKDB_OPTIONS=--sgml-mode --output-format=xml
47
48 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
49 content_files= \
50         version.xml
51
52 version.xml: ../configure.ac
53         @echo $(VERSION) > version.xml
54
55 # Images to copy into HTML directory.
56 HTML_IMAGES =
57
58 # Extra options to supply to gtkdoc-fixref.
59 FIXXREF_OPTIONS=
60
61 include $(top_srcdir)/gtk-doc.make
62
63