~ubuntu-branches/ubuntu/natty/dee/natty

« back to all changes in this revision

Viewing changes to doc/reference/dee-1.0/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-06-07 11:11:12 UTC
  • Revision ID: james.westby@ubuntu.com-20100607111112-hfpzyhy4o0rhps5a
Tags: upstream-0.2.4
ImportĀ upstreamĀ versionĀ 0.2.4

Show diffs side-by-side

added added

removed removed

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