diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2015-02-09 12:44:24 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-10 23:09:32 +0000 |
commit | 961e692cf2a5b6614f5c2465d859e413aa9eaf98 (patch) | |
tree | a74705f57e22ac0e26f620cc43030d8f511c5968 /bitbake | |
parent | 1a740bbde1d46efb244e48b1b8212fe17bb923ae (diff) | |
download | poky-961e692cf2a5b6614f5c2465d859e413aa9eaf98.tar.gz |
bitbake: Makefile: Updated the script to not create PDF version by default
For this release, we are dropping automatic creation of PDF manual.
The user can still create them by specifically using the 'pdf' target.
(Bitbake rev: e19320b4c453844f4ea7f7c1e56a9ed3e552f014)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/doc/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bitbake/doc/Makefile b/bitbake/doc/Makefile index 8e98c57eb1..3c28f4b222 100644 --- a/bitbake/doc/Makefile +++ b/bitbake/doc/Makefile | |||
@@ -11,7 +11,7 @@ | |||
11 | # validate: validates | 11 | # validate: validates |
12 | # clean: removes files | 12 | # clean: removes files |
13 | # | 13 | # |
14 | # The Makefile generates an HTML and PDF version of every document. The | 14 | # The Makefile generates an HTML version of every document. The |
15 | # variable DOC indicates the folder name for a given manual. | 15 | # variable DOC indicates the folder name for a given manual. |
16 | # | 16 | # |
17 | # To build a manual, you must invoke 'make' with the DOC argument. | 17 | # To build a manual, you must invoke 'make' with the DOC argument. |
@@ -21,8 +21,8 @@ | |||
21 | # make DOC=bitbake-user-manual | 21 | # make DOC=bitbake-user-manual |
22 | # make pdf DOC=bitbake-user-manual | 22 | # make pdf DOC=bitbake-user-manual |
23 | # | 23 | # |
24 | # The first example generates the HTML and PDF versions of the User Manual. | 24 | # The first example generates the HTML version of the User Manual. |
25 | # The second example generates the HTML version only of the User Manual. | 25 | # The second example generates the PDF version of the User Manual. |
26 | # | 26 | # |
27 | 27 | ||
28 | ifeq ($(DOC),bitbake-user-manual) | 28 | ifeq ($(DOC),bitbake-user-manual) |
@@ -31,9 +31,9 @@ XSLTOPTS = --stringparam html.stylesheet bitbake-user-manual-style.css \ | |||
31 | --stringparam section.autolabel 1 \ | 31 | --stringparam section.autolabel 1 \ |
32 | --stringparam section.label.includes.component.label 1 \ | 32 | --stringparam section.label.includes.component.label 1 \ |
33 | --xinclude | 33 | --xinclude |
34 | ALLPREQ = html pdf tarball | 34 | ALLPREQ = html tarball |
35 | TARFILES = bitbake-user-manual-style.css bitbake-user-manual.html bitbake-user-manual.pdf figures/bitbake-title.png | 35 | TARFILES = bitbake-user-manual-style.css bitbake-user-manual.html figures/bitbake-title.png |
36 | MANUALS = $(DOC)/$(DOC).html $(DOC)/$(DOC).pdf | 36 | MANUALS = $(DOC)/$(DOC).html |
37 | FIGURES = figures | 37 | FIGURES = figures |
38 | STYLESHEET = $(DOC)/*.css | 38 | STYLESHEET = $(DOC)/*.css |
39 | 39 | ||