1## Process this file with automake to produce Makefile.in
2
3# The name of the module.
4DOC_MODULE = libgimpconfig
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 = --extra-dir=../libgimpbase/html --extra-dir=../libgimpcolor/html --extra-dir=../libgimpmath/html
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	gimpconfig.h
31
32# Images to copy into HTML directory
33HTML_IMAGES=
34
35# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
36content_files =
37
38# Other files to distribute
39extra_files =
40
41# CFLAGS and LDFLAGS for compiling scan program. Only needed
42# if $(DOC_MODULE).types is non-empty.
43GTKDOC_CFLAGS = \
44	@CFLAGS@		\
45	-I$(top_srcdir) 	\
46	-I$(top_builddir) 	\
47	@GLIB_CFLAGS@
48
49GTKDOC_LIBS = \
50        $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \
51        $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \
52        $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \
53        $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la \
54	@GLIB_LIBS@
55
56
57include $(top_srcdir)/gtk-doc.make
58
59# Other files to distribute
60EXTRA_DIST += version.in
61