2001-05-25 20:44:40 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
# The name of the module.
|
2019-07-23 13:39:14 +02:00
|
|
|
DOC_MODULE = libgimpbase3
|
2001-05-25 20:44:40 +00:00
|
|
|
|
|
|
|
# The top-level SGML file.
|
2002-03-08 12:36:40 +00:00
|
|
|
DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml
|
2001-05-25 20:44:40 +00:00
|
|
|
|
2002-03-08 12:36:40 +00:00
|
|
|
# The directory containing the source code.
|
2019-07-23 13:39:14 +02:00
|
|
|
DOC_SOURCE_DIR = $(top_srcdir)/libgimpbase
|
2001-05-25 20:44:40 +00:00
|
|
|
|
2002-03-08 12:36:40 +00:00
|
|
|
# Extra options to pass to gtkdoc-scangobj
|
|
|
|
SCANGOBJ_OPTIONS =
|
2001-05-25 20:44:40 +00:00
|
|
|
|
2002-03-08 12:36:40 +00:00
|
|
|
# Extra options to supply to gtkdoc-scan
|
2006-11-27 09:47:23 +00:00
|
|
|
SCAN_OPTIONS = --deprecated-guards="GIMP_DISABLE_DEPRECATED"
|
2002-03-08 12:36:40 +00:00
|
|
|
|
|
|
|
# Extra options to supply to gtkdoc-mkdb
|
2011-04-14 21:27:29 +02:00
|
|
|
MKDB_OPTIONS = --sgml-mode --output-format=xml --name-space=gimp
|
2002-03-08 12:36:40 +00:00
|
|
|
|
|
|
|
# Extra options to supply to gtkdoc-fixref
|
|
|
|
FIXXREF_OPTIONS =
|
|
|
|
|
|
|
|
# Used for dependencies
|
|
|
|
HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h
|
|
|
|
CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c
|
|
|
|
|
|
|
|
# Header files to ignore when scanning
|
2003-07-28 19:49:19 +00:00
|
|
|
IGNORE_HFILES = \
|
2003-11-15 23:09:17 +00:00
|
|
|
gimpbase.h \
|
|
|
|
gimpbase-private.h \
|
2017-03-10 23:52:59 +01:00
|
|
|
gimpcompatenums.h \
|
2005-12-14 13:36:12 +00:00
|
|
|
gimpprotocol.h \
|
2005-11-06 01:06:41 +00:00
|
|
|
gimpreloc.h \
|
2005-12-14 13:36:12 +00:00
|
|
|
gimpwire.h \
|
2003-07-28 19:49:19 +00:00
|
|
|
gimpwin32-io.h
|
2002-03-08 12:36:40 +00:00
|
|
|
|
|
|
|
# Images to copy into HTML directory
|
|
|
|
HTML_IMAGES=
|
|
|
|
|
|
|
|
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
|
|
|
|
content_files =
|
|
|
|
|
|
|
|
# Other files to distribute
|
|
|
|
extra_files =
|
|
|
|
|
|
|
|
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
|
|
|
# if $(DOC_MODULE).types is non-empty.
|
2019-08-01 12:37:32 +02:00
|
|
|
GTKDOC_CFLAGS = \
|
|
|
|
@CFLAGS@ \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_builddir) \
|
|
|
|
@GEGL_CFLAGS@
|
|
|
|
|
|
|
|
GTKDOC_LIBS = \
|
|
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \
|
|
|
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \
|
|
|
|
@GEGL_LIBS@
|
2001-05-25 20:44:40 +00:00
|
|
|
|
2004-12-13 22:51:55 +00:00
|
|
|
|
|
|
|
include $(top_srcdir)/gtk-doc.make
|