2011-11-07 13:46:58 -06:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
# see /gtk-doc/examples/Makefile.am
|
|
|
|
|
|
|
|
# We require automake 1.6 at least.
|
|
|
|
AUTOMAKE_OPTIONS = 1.6
|
|
|
|
|
|
|
|
# The name of the module, e.g. 'glib'.
|
2017-02-11 20:28:38 -06:00
|
|
|
DOC_MODULE = xed
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-11 20:28:38 -06:00
|
|
|
# The top-level XML file (SGML in the past).
|
|
|
|
DOC_MAIN_SGML_FILE = xed-docs.xml
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
# The directory containing the source code. Relative to $(srcdir).
|
2017-02-11 20:28:38 -06:00
|
|
|
DOC_SOURCE_DIR = ../../xed
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
# Extra options to supply to gtkdoc-scan.
|
2017-02-11 20:28:38 -06:00
|
|
|
# e.g. SCAN_OPTIONS = --deprecated-guards="GTK_DISABLE_DEPRECATED"
|
2017-01-29 20:07:07 -06:00
|
|
|
SCAN_OPTIONS = --rebuild-types
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
# Extra options to supply to gtkdoc-mkdb.
|
2017-02-11 20:28:38 -06:00
|
|
|
MKDB_OPTIONS = --xml-mode --output-format=xml
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
# Used for dependencies. The docs will be rebuilt if any of these change.
|
2017-02-11 20:28:38 -06:00
|
|
|
HFILE_GLOB = $(top_srcdir)/xed/*.h
|
|
|
|
CFILE_GLOB = $(top_srcdir)/xed/*.c
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
# Header files to ignore when scanning (These are internal to xed).
|
2011-11-07 13:46:58 -06:00
|
|
|
IGNORE_HFILES= \
|
2017-02-11 20:28:38 -06:00
|
|
|
xed-close-confirmation-dialog.h \
|
|
|
|
xed-dirs.h \
|
|
|
|
xed-commands.h \
|
2016-02-04 03:20:42 -06:00
|
|
|
xed-documents-panel.h \
|
2017-02-05 03:41:46 -06:00
|
|
|
xed-io-error-info-bar.h \
|
2016-02-04 03:20:42 -06:00
|
|
|
xed-languages-manager.h \
|
|
|
|
xed-plugins-engine.h \
|
|
|
|
xed-session.h \
|
|
|
|
xed-ui.h \
|
|
|
|
xed-window-private.h \
|
|
|
|
xed-output-window.h \
|
|
|
|
xed-encodings-dialog.h \
|
|
|
|
xed-open-location-dialog.h \
|
|
|
|
xed-page-setup-dialog.h \
|
|
|
|
xed-preferences-dialog.h \
|
|
|
|
xed-search-dialog.h \
|
|
|
|
xed-marshal.h \
|
|
|
|
xed-enum-types.h
|
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
# Images to copy into HTML directory.
|
2017-02-11 20:28:38 -06:00
|
|
|
HTML_IMAGES =
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
|
2017-02-11 20:28:38 -06:00
|
|
|
content_files =
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
|
|
|
|
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
|
|
|
|
# signals and properties.
|
2017-02-11 20:28:38 -06:00
|
|
|
GTKDOC_CFLAGS = \
|
|
|
|
-I$(top_srcdir)/xed \
|
|
|
|
-I$(top_builddir)/xed \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_builddir) \
|
2016-02-04 03:20:42 -06:00
|
|
|
$(XED_CFLAGS)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-02-11 20:28:38 -06:00
|
|
|
GTKDOC_LIBS = \
|
2016-02-04 03:20:42 -06:00
|
|
|
$(top_builddir)/xed/libxed.la \
|
|
|
|
$(XED_LIBS)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-29 20:07:07 -06:00
|
|
|
MAINTAINERCLEANFILES = xed.types
|
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
# This includes the standard gtk-doc make rules, copied by gtkdocize.
|
|
|
|
include $(top_srcdir)/gtk-doc.make
|
|
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|