summaryrefslogtreecommitdiffstats
path: root/documentation/Makefile
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2018-02-26 13:20:27 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-03-03 08:35:25 +0000
commit92ee38410f9ef0737a425b082783e818c6f6cc5b (patch)
tree48b0194bc47383f4ec0cab8849489bafe1be125d /documentation/Makefile
parentefc08b7b6f8d5d0d45c2f9ccfaaff897aeed76ce (diff)
downloadpoky-92ee38410f9ef0737a425b082783e818c6f6cc5b.tar.gz
brief-yoctoprojectqs, Makefile: New "First Build" article.
I have created an brief article in the form of current YP docs that is a pared down version of the Quick Start (pre 2.5 release). The article fills a gap for a short (2-page), process-oriented article that steps the user through an initial build using YP. I had to make changes to the Makefile to support building the new article. (From yocto-docs rev: 47aace60cea4a892ae1efabb050b240c6abdaec9) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/Makefile')
-rw-r--r--documentation/Makefile19
1 files changed, 17 insertions, 2 deletions
diff --git a/documentation/Makefile b/documentation/Makefile
index bb8d6a5749..b55dddb85e 100644
--- a/documentation/Makefile
+++ b/documentation/Makefile
@@ -84,6 +84,21 @@
84# for the 'denzil' branch. 84# for the 'denzil' branch.
85# 85#
86 86
87ifeq ($(DOC),brief-yoctoprojectqs)
88XSLTOPTS = --stringparam html.stylesheet brief-yoctoprojectqs-style.css \
89 --stringparam chapter.autolabel 1 \
90 --stringparam section.autolabel 1 \
91 --stringparam section.label.includes.component.label 1 \
92 --xinclude
93ALLPREQ = html tarball
94TARFILES = brief-yoctoprojectqs-style.css brief-yoctoprojectqs.html figures/ypqs-title.png \
95 figures/yocto-project-transp.png
96MANUALS = $(DOC)/$(DOC).html $(DOC)/eclipse
97FIGURES = figures
98STYLESHEET = $(DOC)/*.css
99
100endif
101
87ifeq ($(DOC),getting-started) 102ifeq ($(DOC),getting-started)
88XSLTOPTS = --xinclude 103XSLTOPTS = --xinclude
89ALLPREQ = html eclipse tarball 104ALLPREQ = html eclipse tarball
@@ -384,9 +399,9 @@ XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl
384all: $(ALLPREQ) 399all: $(ALLPREQ)
385 400
386pdf: 401pdf:
387ifeq ($(DOC),yocto-project-qs) 402ifeq ($(DOC),yocto-project-qs brief-yoctoprojectqs)
388 @echo " " 403 @echo " "
389 @echo "ERROR: You cannot generate a yocto-project-qs PDF file." 404 @echo "ERROR: You cannot generate yocto-project-qs or brief-yoctoprojectqs PDF files."
390 @echo " " 405 @echo " "
391 406
392else ifeq ($(DOC),mega-manual) 407else ifeq ($(DOC),mega-manual)