~indicator-applet-developers/libappindicator/trunk.14.10

« back to all changes in this revision

Viewing changes to docs/reference/Makefile.am

  • Committer: Ken VanDine
  • Date: 2009-12-05 06:21:59 UTC
  • mto: (14.1.1 doctest)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: ken.vandine@canonical.com-20091205062159-cmdjmt82t541brwg
generateĀ gtk-doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
# This is a blank Makefile.am for using gtk-doc.
 
7
# Copy this to your project's API docs directory and modify the variables to
 
8
# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
 
9
# of using the various options.
 
10
 
 
11
# The name of the module, e.g. 'glib'.
 
12
DOC_MODULE=libappindicator
 
13
 
 
14
# Uncomment for versioned docs and specify the version of the module, e.g. '2'.
 
15
#DOC_MODULE_VERSION=2
 
16
 
 
17
 
 
18
# The top-level SGML file. You can change this if you want to.
 
19
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
 
20
 
 
21
# The directory containing the source code. Relative to $(srcdir).
 
22
# gtk-doc will search all .c & .h files beneath here for inline comments
 
23
# documenting the functions and macros.
 
24
# e.g. DOC_SOURCE_DIR=../../../gtk
 
25
DOC_SOURCE_DIR=../../src
 
26
 
 
27
# Extra options to pass to gtkdoc-scangobj. Not normally needed.
 
28
SCANGOBJ_OPTIONS=--nogtkinit --type-init-func="g_type_init()"
 
29
 
 
30
# Extra options to supply to gtkdoc-scan.
 
31
# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
 
32
SCAN_OPTIONS=--rebuild-types --rebuild-sections
 
33
 
 
34
# Extra options to supply to gtkdoc-mkdb.
 
35
# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
 
36
MKDB_OPTIONS=--sgml-mode --output-format=xml
 
37
 
 
38
# Extra options to supply to gtkdoc-mktmpl
 
39
# e.g. MKTMPL_OPTIONS=--only-section-tmpl
 
40
MKTMPL_OPTIONS=
 
41
 
 
42
# Extra options to supply to gtkdoc-mkhtml
 
43
MKHTML_OPTIONS=
 
44
 
 
45
# Extra options to supply to gtkdoc-fixref. Not normally needed.
 
46
# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
 
47
FIXXREF_OPTIONS=
 
48
 
 
49
# Used for dependencies. The docs will be rebuilt if any of these change.
 
50
# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
 
51
# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
 
52
HFILE_GLOB=$(top_srcdir)/src/libappindicator/*.h $(top_srcdir)/src/*.h
 
53
CFILE_GLOB=$(top_srcdir)/src/libappindicator/*.c $(top_srcdir)/src/*.c
 
54
 
 
55
# Header files to ignore when scanning.
 
56
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
 
57
IGNORE_HFILES=app-indicator-enum-types.h application-service-appstore.h application-service-client.h application-service-marshal.h application-service-server.h application-service-watcher.h dbus-properties-client.h dbus-properties-server.h dbus-shared.h notification-item-client.h notification-item-server.h notification-watcher-client.h notification-watcher-server.h
 
58
 
 
59
# Images to copy into HTML directory.
 
60
# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
 
61
HTML_IMAGES=
 
62
 
 
63
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
 
64
# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
 
65
content_files=version.xml
 
66
 
 
67
# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
 
68
# These files must be listed here *and* in content_files
 
69
# e.g. expand_content_files=running.sgml
 
70
expand_content_files=
 
71
 
 
72
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
 
73
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
 
74
# signals and properties.
 
75
# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
 
76
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
 
77
GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_srcdir)/src $(INDICATOR_CFLAGS)
 
78
GTKDOC_LIBS=$(top_builddir)/src/libappindicator.la $(top_builddir)/src/libapplication.la $(top_builddir)/src/indicator_application_service-application-service-appstore.o $(top_builddir)/src/indicator_application_service-application-service-watcher.o
 
79
 
 
80
# This includes the standard gtk-doc make rules, copied by gtkdocize.
 
81
include $(top_srcdir)/gtk-doc.make
 
82
 
 
83
# Other files to distribute
 
84
# e.g. EXTRA_DIST += version.xml.in
 
85
EXTRA_DIST += version.xml.in
 
86
 
 
87
# Files not to distribute
 
88
# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
 
89
# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
 
90
#DISTCLEANFILES +=
 
91
 
 
92
# Comment this out if you want your docs-status tested during 'make check'
 
93
#TESTS = $(GTKDOC_CHECK)
 
94