First step of renaming the Boot Manager to Node Startup Controller
[profile/ivi/node-startup-controller.git] / docs / reference / node-startup-controller / Makefile.am
1 # vi:set ts=8 sw=8 noet ai nocindent:
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=node-startup-controller
8
9 # Uncomment for versioned docs and specify the version of the module, e.g. '2'.
10 DOC_MODULE_VERSION=$(BOOT_MANAGER_VERSION)
11
12 # The top-level SGML file. You can change this if you want to.
13 DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.xml
14
15 # Directories containing the source code.
16 # gtk-doc will search all .c and .h files beneath these paths
17 # for inline comments documenting functions and macros.
18 # e.g. DOC_SOURCE_DIR=$(top_srcdir)/gtk $(top_srcdir)/gdk
19 DOC_SOURCE_DIR =                                                        \
20         $(top_srcdir)/node-startup-controller                                   \
21         $(top_srcdir)/common                                            \
22         $(top_srcdir)/legacy-app-handler
23
24 # Extra options to pass to gtkdoc-scangobj. Not normally needed.
25 SCANGOBJ_OPTIONS=
26
27 # Extra options to supply to gtkdoc-scan.
28 # e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
29 SCAN_OPTIONS=--rebuild-sections
30
31 # Extra options to supply to gtkdoc-mkdb.
32 # e.g. MKDB_OPTIONS=--xml-mode --output-format=xml
33 MKDB_OPTIONS=--xml-mode --output-format=xml
34
35 # Extra options to supply to gtkdoc-mktmpl
36 # e.g. MKTMPL_OPTIONS=--only-section-tmpl
37 MKTMPL_OPTIONS=
38
39 # Extra options to supply to gtkdoc-mkhtml
40 MKHTML_OPTIONS=
41
42 # Extra options to supply to gtkdoc-fixref. Not normally needed.
43 # e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
44 FIXXREF_OPTIONS=
45
46 # Used for dependencies. The docs will be rebuilt if any of these change.
47 # e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
48 # e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
49 HFILE_GLOB =                                                            \
50         $(top_srcdir)/node-startup-controller/*.h                                       \
51         $(top_srcdir)/common/*.h
52 CFILE_GLOB =                                                            \
53         $(top_srcdir)/node-startup-controller/*.c                                       \
54         $(top_srcdir)/common/*.c                                        \
55         $(top_srcdir)/legacy-app-handler/*.c
56
57 # Extra header to include when scanning, which are not under DOC_SOURCE_DIR
58 # e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h
59 EXTRA_HFILES=
60
61 # Header files or dirs to ignore when scanning. Use base file/dir names
62 # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h private_code
63 IGNORE_HFILES=
64
65 # Images to copy into HTML directory.
66 # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
67 HTML_IMAGES=
68
69 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
70 # e.g. content_files=running.sgml building.sgml changes-2.0.sgml
71 content_files =                                                         \
72         version.xml
73
74 # SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
75 # These files must be listed here *and* in content_files
76 # e.g. expand_content_files=running.sgml
77 expand_content_files=
78
79 # CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
80 # Only needed if you are using gtkdoc-scangobj to dynamically query widget
81 # signals and properties.
82 # e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
83 # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
84 GTKDOC_CFLAGS=
85 GTKDOC_LIBS=
86
87 # This includes the standard gtk-doc make rules, copied by gtkdocize.
88 include $(top_srcdir)/gtk-doc.make
89
90 # Other files to distribute
91 # e.g. EXTRA_DIST += version.xml.in
92 EXTRA_DIST +=                                                           \
93         legacy-app-handler.xml                                          \
94         version.xml.in
95
96 # Files not to distribute
97 # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
98 # for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
99 DISTCLEANFILES = $(DOC_MODULE)-sections.txt
100
101 # Comment this out if you want 'make check' to test you doc status
102 # and run some sanity checks
103 if ENABLE_GTK_DOC
104 TESTS_ENVIRONMENT = cd $(srcdir) && \
105   DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \
106   SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir)
107 #TESTS = $(GTKDOC_CHECK)
108 endif
109
110 -include $(top_srcdir)/git.mk
111
112 # Required for make distcheck
113 dist-hook: all