docs: Add more manuals to the PDF build
authorJonathan Corbet <corbet@lwn.net>
Wed, 16 Nov 2016 23:07:02 +0000 (16:07 -0700)
committerJonathan Corbet <corbet@lwn.net>
Wed, 16 Nov 2016 23:07:02 +0000 (16:07 -0700)
There were a few manuals that weren't being built in PDF format, but
there's no reason not to...

Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Documentation/conf.py
Documentation/core-api/conf.py
Documentation/security/conf.py [new file with mode: 0644]

index db78974..ba38bcf 100644 (file)
@@ -342,6 +342,10 @@ if major == 1 and minor > 3:
 latex_documents = [
     ('admin-guide/index', 'linux-user.tex', 'Linux Kernel User Documentation',
      'The kernel development community', 'manual'),
+    ('core-api/index', 'core-api.tex', 'The kernel core API manual',
+     'The kernel development community', 'manual'),
+    ('driver-api/index', 'driver-api.tex', 'The kernel driver API manual',
+     'The kernel development community', 'manual'),
     ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation',
      'The kernel development community', 'manual'),
     ('process/index', 'development-process.tex', 'Linux Kernel Development Documentation',
@@ -350,6 +354,8 @@ latex_documents = [
      'The kernel development community', 'manual'),
     ('media/index', 'media.tex', 'Linux Media Subsystem Documentation',
      'The kernel development community', 'manual'),
+    ('security/index', 'security.tex', 'The kernel security subsystem manual',
+     'The kernel development community', 'manual'),
 ]
 
 # The name of an image file (relative to this directory) to place at the top of
index fed87ab..db1f765 100644 (file)
@@ -3,3 +3,8 @@
 project = "Core-API Documentation"
 
 tags.add("subproject")
+
+latex_documents = [
+    ('index', 'core-api.tex', project,
+     'The kernel development community', 'manual'),
+]
diff --git a/Documentation/security/conf.py b/Documentation/security/conf.py
new file mode 100644 (file)
index 0000000..472fc9a
--- /dev/null
@@ -0,0 +1,8 @@
+project = "The kernel security subsystem manual"
+
+tags.add("subproject")
+
+latex_documents = [
+    ('index', 'security.tex', project,
+     'The kernel development community', 'manual'),
+]