summaryrefslogtreecommitdiffstats
path: root/doc/c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-09-23 16:01:11 -0400
committerDavid Robillard <d@drobilla.net>2023-09-23 16:01:11 -0400
commit9f1cf4711242a90517d2e9e0d27922c151784e64 (patch)
tree234c62dd2a3b173647cb421ac618142713bc9d7d /doc/c
parent7314d2fd4077cbdc16535156b350f0f00d77ca69 (diff)
downloadsuil-9f1cf4711242a90517d2e9e0d27922c151784e64.tar.gz
suil-9f1cf4711242a90517d2e9e0d27922c151784e64.tar.bz2
suil-9f1cf4711242a90517d2e9e0d27922c151784e64.zip
Remove stale documentation directory
Diffstat (limited to 'doc/c')
-rw-r--r--doc/c/meson.build51
1 files changed, 0 insertions, 51 deletions
diff --git a/doc/c/meson.build b/doc/c/meson.build
deleted file mode 100644
index 2786139..0000000
--- a/doc/c/meson.build
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2021-2022 David Robillard <d@drobilla.net>
-# SPDX-License-Identifier: 0BSD OR ISC
-
-config = configuration_data()
-config.set('SUIL_VERSION', meson.project_version())
-
-conf_py = configure_file(
- configuration: config,
- input: files('../conf.py.in'),
- output: 'conf.py',
-)
-
-configure_file(
- copy: true,
- input: files('../summary.rst'),
- output: 'summary.rst',
-)
-
-c_rst_files = files(
- 'index.rst',
- 'overview.rst',
-)
-
-foreach f : c_rst_files
- configure_file(copy: true, input: f, output: '@PLAINNAME@')
-endforeach
-
-subdir('xml')
-subdir('api')
-
-docs = custom_target(
- 'singlehtml',
- build_by_default: true,
- command: [sphinx_build, '-M', 'singlehtml', '@OUTDIR@', '@OUTDIR@',
- '-E', '-q', '-t', 'singlehtml'],
- input: [c_rst_files, c_suil_rst, c_index_xml],
- install: true,
- install_dir: docdir / 'suil-0',
- output: 'singlehtml',
-)
-
-docs = custom_target(
- 'html',
- build_by_default: true,
- command: [sphinx_build, '-M', 'html', '@OUTDIR@', '@OUTDIR@',
- '-E', '-q', '-t', 'html'],
- input: [c_rst_files, c_suil_rst, c_index_xml],
- install: true,
- install_dir: docdir / 'suil-0',
- output: 'html',
-)