summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-08-07 12:14:45 +0200
committerMichael Catanzaro <mcatanzaro@igalia.com>2017-10-17 16:33:10 -0500
commit5ec00d635ec4ee464961c7788a927aa908b7c4d8 (patch)
treeb2519cac57a73c3babbca397c973cf2c7b4ee0e9 /docs
parentf7a71bd57254912547256045b747f9181eef3529 (diff)
downloaddconf-5ec00d635ec4ee464961c7788a927aa908b7c4d8.tar.gz
build: Remove autotools
To avoid the burden of maintaining multiple build systems, this patch removes autotools support. https://bugzilla.gnome.org/show_bug.cgi?id=784910
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile.am51
1 files changed, 0 insertions, 51 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am
deleted file mode 100644
index 361beee..0000000
--- a/docs/Makefile.am
+++ /dev/null
@@ -1,51 +0,0 @@
-include $(top_srcdir)/Makefile.gtester
-
-include gtk-doc.make
-
-DOC_MODULE = dconf
-
-DOC_MAIN_SGML_FILE = dconf-docs.xml
-
-DOC_SOURCE_DIR = $(top_srcdir)/client $(top_srcdir)/common
-HFILE_GLOB = $(top_srcdir)/client/*.h $(top_srcdir)/common/*.h
-CFILE_GLOB = $(top_srcdir)/client/*.c $(top_srcdir)/common/*.c
-
-MKDB_OPTIONS = --output-format=xml
-
-AM_CPPFLAGS = $(gio_CFLAGS)
-GTKDOC_LIBS = $(gio_LIBS) -L../client -ldconf -Wl,-rpath=../client
-
-content_files = \
- dconf-overview.xml \
- dconf-service.xml \
- dconf-tool.xml
-
-XSLTPROC_MAN_FLAGS = \
- --nonet \
- --stringparam man.output.quietly 1 \
- --stringparam funcsynopsis.style ansi \
- --stringparam man.th.extra1.suppress 1 \
- --stringparam man.authors.section.enabled 0 \
- --stringparam man.copyright.section.enabled 0
-
-%.1: %.xml
- $(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_MAN_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
-
-dconf.1: dconf-tool.xml
- $(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_MAN_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
-
-dconf.7: dconf-overview.xml
- $(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_MAN_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
-
-man_MANS =
-
-if ENABLE_MAN
-man_MANS += \
- dconf-service.1 \
- dconf.1 \
- dconf.7
-endif
-
-EXTRA_DIST += dconf-service.xml dconf-tool.xml dconf-overview.xml meson.build
-
-DISTCLEANFILES = $(man_MANS)