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 62 63 64 65 66 67 68 69 70 71 72 73 74
|
# The name of the module.
DOC_MODULE = camel
DOC_MODULE_VERSIONED = $(DOC_MODULE)-$(CAMEL_MAJOR_VERSION).$(CAMEL_MINOR_VERSION)
# The top-level SGML file.
DOC_MAIN_SGML_FILE = camel-docs.sgml
# The directory containing the source code (if it contains documentation).
DOC_SOURCE_DIR = $(top_srcdir)/camel
HTML_DIR = $(datadir)/gtk-doc/html
# Extra options to supply to gtkdoc-scan
SCAN_OPTIONS = --deprecated-guards="CAMEL_DISABLE_DEPRECATED"
# Extra options to pass to gtkdoc-scangobj
SCANGOBJ_OPTIONS =
# Extra options to supply to gtkdoc-mkdb
MKDB_OPTIONS = --sgml-mode --output-format=xml --name-space=camel
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
GTKDOC_CFLAGS = \
-I$(top_srcdir) \
-I$(top_builddir) \
-I$(top_builddir)/camel \
$(CAMEL_CFLAGS)
GTKDOC_LIBS = \
$(top_builddir)/camel/libcamel-1.2.la \
$(CAMEL_LIBS)
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
content_files = \
tree_index.sgml
# Used for dependencies. The docs will be rebuilt if any of these change.
HFILE_GLOB=$(top_srcdir)/camel/*.h
CFILE_GLOB=$(top_srcdir)/camel/*.c
# Header files to ignore when scanning
# XXX Ignore the imapx provider for now.
IGNORE_HFILES = \
broken-date-parser.h \
camel-charset-map-private.h \
camel-enumtypes.h \
camel-groupwise-private.h \
camel-i18n.h \
camel-imap-private.h \
camel-imap-types.h \
camel-local-private.h \
camel-marshal.h \
camel-net-utils-win32.h \
camel-nntp-private.h \
camel-nntp-types.h \
camel-search-private.h \
camel-types.h \
camel-win32.h \
providers \
tests
# This includes the standard gtk-doc make rules, copied by gtkdocize.
include $(top_srcdir)/gtk-doc.make
# Other files to distribute
EXTRA_DIST += \
$(content_files) \
$(DOC_MODULE)-docs.sgml \
$(DOC_MODULE)-sections.txt \
camel.hierarchy
#TESTS = $(GTKDOC_CHECK)
-include $(top_srcdir)/git.mk
|