1## Process this file with automake to produce Makefile.in
2
3# The name of the module.
4DOC_MODULE = libgimpbase
5
6# The top-level SGML file.
7DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml
8
9# The directory containing the source code.
10DOC_SOURCE_DIR = $(top_srcdir)/$(DOC_MODULE)
11
12# Extra options to pass to gtkdoc-scangobj
13SCANGOBJ_OPTIONS =
14
15# Extra options to supply to gtkdoc-scan
16SCAN_OPTIONS = --deprecated-guards="GIMP_DISABLE_DEPRECATED"
17
18# Extra options to supply to gtkdoc-mkdb
19MKDB_OPTIONS = --sgml-mode --output-format=xml --name-space=gimp
20
21# Extra options to supply to gtkdoc-fixref
22FIXXREF_OPTIONS =
23
24# Used for dependencies
25HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h
26CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c
27
28# Header files to ignore when scanning
29IGNORE_HFILES = \
30	gimpbase.h		\
31	gimpbase-private.h	\
32	gimpcompatenums.h	\
33	gimpprotocol.h		\
34	gimpreloc.h		\
35	gimpwire.h		\
36	gimpwin32-io.h
37
38# Images to copy into HTML directory
39HTML_IMAGES=
40
41# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
42content_files =
43
44# Other files to distribute
45extra_files =
46
47# CFLAGS and LDFLAGS for compiling scan program. Only needed
48# if $(DOC_MODULE).types is non-empty.
49GTKDOC_CFLAGS =
50GTKDOC_LIBS =
51
52
53include $(top_srcdir)/gtk-doc.make
54
55# Other files to distribute
56EXTRA_DIST += version.in
57