2008-11-19 18:46:01 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
AUTOMAKE_OPTIONS = 1.6
|
|
|
|
|
|
|
|
|
|
# The name of the module
|
|
|
|
|
DOC_MODULE=libnm-util
|
|
|
|
|
|
|
|
|
|
# The top-level SGML file.
|
|
|
|
|
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
|
|
|
|
|
|
|
|
|
|
# The directory containing the source code. Relative to $(srcdir).
|
|
|
|
|
# gtk-doc will search all .c & .h files beneath here for inline comments
|
|
|
|
|
# documenting functions and macros.
|
2014-12-31 01:23:12 +08:00
|
|
|
DOC_SOURCE_DIR= \
|
|
|
|
|
$(top_builddir)/libnm-util \
|
|
|
|
|
$(top_srcdir)/libnm-util
|
2008-11-19 18:46:01 +00:00
|
|
|
|
|
|
|
|
# Extra options to supply to gtkdoc-scan.
|
2009-09-28 16:55:44 -07:00
|
|
|
SCAN_OPTIONS=--rebuild-types --rebuild-sections
|
2008-11-19 18:46:01 +00:00
|
|
|
|
|
|
|
|
# Extra options to supply to gtkdoc-mkdb.
|
|
|
|
|
MKDB_OPTIONS=--sgml-mode --output-format=xml
|
|
|
|
|
|
|
|
|
|
# Extra options to supply to gtkdoc-fixref.
|
|
|
|
|
FIXXREF_OPTIONS=
|
|
|
|
|
|
|
|
|
|
# Used for dependencies.
|
2009-09-28 16:01:21 -07:00
|
|
|
HFILE_GLOB=$(top_srcdir)/libnm-util/*.h
|
|
|
|
|
CFILE_GLOB=$(top_srcdir)/libnm-util/*.c
|
2008-11-19 18:46:01 +00:00
|
|
|
|
|
|
|
|
# Header files to ignore when scanning.
|
|
|
|
|
IGNORE_HFILES= \
|
|
|
|
|
crypto.h \
|
2008-11-24 16:55:37 +00:00
|
|
|
nm-utils-private.h \
|
2014-07-01 15:47:21 -05:00
|
|
|
nm-setting-private.h \
|
2014-05-13 13:49:06 -05:00
|
|
|
nm-param-spec-specialized.h \
|
2014-12-18 12:44:57 -05:00
|
|
|
nm-test-utils.h \
|
|
|
|
|
nm-version.h
|
2008-11-19 18:46:01 +00:00
|
|
|
|
|
|
|
|
# Images to copy into HTML directory.
|
2018-02-02 10:55:34 +01:00
|
|
|
HTML_IMAGES =
|
2008-11-19 18:46:01 +00:00
|
|
|
|
|
|
|
|
# Extra XML files that are included by $(DOC_MAIN_SGML_FILE).
|
2012-08-06 22:04:06 -05:00
|
|
|
content_files = version.xml
|
2008-11-19 18:46:01 +00:00
|
|
|
|
|
|
|
|
# Other files to distribute.
|
|
|
|
|
extra_files =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
|
|
|
|
# if $(DOC_MODULE).types is non-empty.
|
2018-02-02 10:55:34 +01:00
|
|
|
GTKDOC_CFLAGS = \
|
|
|
|
|
-I$(top_srcdir)/libnm-util \
|
2016-04-05 21:18:43 +02:00
|
|
|
-DNM_VERSION_MIN_REQUIRED=NM_VERSION_0_9_8 \
|
2018-02-02 10:55:34 +01:00
|
|
|
$(GLIB_CFLAGS) \
|
2008-11-19 18:46:01 +00:00
|
|
|
$(DBUS_CFLAGS)
|
|
|
|
|
|
2011-03-07 09:49:48 -06:00
|
|
|
GTKDOC_LIBS = \
|
|
|
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
|
|
|
$(GLIB_LIBS)
|
|
|
|
|
|
2008-11-19 18:46:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# include common portion ...
|
|
|
|
|
include $(top_srcdir)/gtk-doc.make
|
|
|
|
|
|
2018-01-08 13:06:54 +01:00
|
|
|
EXTRA_DIST += version.xml.in meson.build
|
2012-08-06 22:04:06 -05:00
|
|
|
|
2011-01-25 12:40:18 -06:00
|
|
|
CLEANFILES += \
|
|
|
|
|
libnm-util-sections.txt \
|
2012-11-13 23:13:25 +01:00
|
|
|
libnm-util-overrides.txt \
|
2011-01-25 12:40:18 -06:00
|
|
|
html/* \
|
|
|
|
|
tmpl/* \
|
|
|
|
|
xml/*
|
2009-09-28 16:01:21 -07:00
|
|
|
|