aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/driver-api/conf.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2016-10-26 02:23:15 -0400
committerJonathan Corbet <corbet@lwn.net>2016-10-26 19:25:00 -0400
commit241a8021c60fb19d9d8524d2f6d0d5a52a1e056f (patch)
tree72a83ec4e5c21976213e3617498507f715f22363 /Documentation/driver-api/conf.py
parentc289312f964b6e8851d0812b65f59c8b0387e78d (diff)
doc-rst: make driver-api folder buildable stand-alone
Add minimal conf.py makes the driver-api folder buildable stand-alone. To build only this folder run:: make SPHINXDIRS=driver-api htmldocs make SPHINXDIRS=driver-api pdfdocs Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/driver-api/conf.py')
-rw-r--r--Documentation/driver-api/conf.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/driver-api/conf.py b/Documentation/driver-api/conf.py
new file mode 100644
index 000000000000..202726d20088
--- /dev/null
+++ b/Documentation/driver-api/conf.py
@@ -0,0 +1,10 @@
1# -*- coding: utf-8; mode: python -*-
2
3project = "The Linux driver implementer's API guide"
4
5tags.add("subproject")
6
7latex_documents = [
8 ('index', 'driver-api.tex', project,
9 'The kernel development community', 'manual'),
10]