blob: 179f6c13bd849696ca2443282df1a91d10a3c6ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
NULL =
# The name of the module.
DOC_MODULE = libebook
# The top-level SGML file.
DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml
# Extra options to supply to gtkdoc-mkdb
# We must enable the SGML mode so that we can have HTML tables
# in the documentation (e.g. to illustrate phone number matching).
MKDB_OPTIONS = --sgml-mode --output-format=xml --name-space=e
# Extra options to supply to gtkdoc-scan
SCAN_OPTIONS = --deprecated-guards="EDS_DISABLE_DEPRECATED"
# The directory containing the source code. Relative to $(srcdir).
DOC_SOURCE_DIR = $(top_srcdir)/addressbook/libebook
# Used for dependencies. The docs will be rebuilt if any of these change.
HFILE_GLOB = $(top_srcdir)/addressbook/libebook/*.h
CFILE_GLOB = $(top_srcdir)/addressbook/libebook/*.c
IGNORE_HFILES = \
e-book-enumtypes.h \
e-data-book-bindings.h \
e-data-book-factory-bindings.h \
e-data-book-view-bindings.h \
$(NULL)
GTKDOC_CFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/addressbook \
-I$(top_builddir) \
-I$(top_builddir)/addressbook \
-I$(top_builddir)/addressbook/libebook \
$(EVOLUTION_ADDRESSBOOK_CFLAGS) \
$(CAMEL_CFLAGS) \
$(NULL)
GTKDOC_LIBS = \
$(top_builddir)/addressbook/libebook-contacts/libebook-contacts-1.2.la \
$(top_builddir)/addressbook/libebook/libebook-1.2.la \
$(top_builddir)/libedataserver/libedataserver-1.2.la \
$(EVOLUTION_ADDRESSBOOK_LIBS) \
$(CAMEL_LIBS) \
$(NULL)
HTML_IMAGES = \
cursor-positions.png \
cursor-positions-filtered.png \
cursor-positions-step.png \
cursor-alphabetic-indexes.png \
$(NULL)
# This includes the standard gtk-doc make rules, copied by gtkdocize.
include $(top_srcdir)/gtk-doc.make
#TESTS = $(GTKDOC_CHECK)
-include $(top_srcdir)/git.mk
|