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