summaryrefslogtreecommitdiffstats
path: root/documentation/bsp-guide
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2011-10-11 11:04:28 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-14 00:39:51 +0100
commit14c9af0056d9ba63c9a509624cc835cb8ee2b8ad (patch)
tree9fa4e9d0f2781f77eec95933e029d5a3a3ef31de /documentation/bsp-guide
parentd106d15cade4dc60e711d03cb54b32d1c4e0d3b1 (diff)
downloadpoky-14c9af0056d9ba63c9a509624cc835cb8ee2b8ad.tar.gz
documentation: Makefile corrections to support web server structure
The web server directory structure for the post 1.0 releases was changed. Also, the creation of a new 1.0 area in the web structure was retroactively created. this broke the five make files for publishing documents to the web. I fixed all five files so they now push to the 1.0 area only. The fix included hard-coding the 1.0 directory structure. I also set them up to be a little more generic. (From yocto-docs rev: d2cd8f1165b0cc995fc322a7d836de0902da7614) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/bsp-guide')
-rw-r--r--documentation/bsp-guide/Makefile35
1 files changed, 29 insertions, 6 deletions
diff --git a/documentation/bsp-guide/Makefile b/documentation/bsp-guide/Makefile
index af802b1dc4..6371a31569 100644
--- a/documentation/bsp-guide/Makefile
+++ b/documentation/bsp-guide/Makefile
@@ -1,9 +1,34 @@
1# You must call this Makefile using the following form:
2#
3# make
4# make html
5# make pdf
6# make tarball
7# make clean
8# make publish
9#
10# "make" creates the HTML, PDF, and tarballs.
11# "make html" creates just the HTML
12# "make pdf" creates just the PDF
13# "make tarball" creates the tarball
14# "make clean" removes the HTML and PDF files
15# "make publish" pushes the HTML, PDF, figures, and stylesheet to the web server
16#
17
1XSLTOPTS = --stringparam html.stylesheet style.css \ 18XSLTOPTS = --stringparam html.stylesheet style.css \
2 --stringparam chapter.autolabel 1 \ 19 --stringparam chapter.autolabel 1 \
3 --stringparam section.autolabel 1 \ 20 --stringparam section.autolabel 1 \
4 --stringparam section.label.includes.component.label 1 \ 21 --stringparam section.label.includes.component.label 1 \
5 --xinclude 22 --xinclude
6 23
24VER = 1.0
25DOC = bsp-guide
26ALLPREQ = html pdf tarball
27TARFILES = bsp-guide.html bsp-guide.pdf style.css figures/bsp-title.png
28MANUALS = $(DOC).html $(DOC).pdf
29FIGURES = figures
30STYLESHEET = *.css
31
7## 32##
8# These URI should be rewritten by your distribution's xml catalog to 33# These URI should be rewritten by your distribution's xml catalog to
9# match your localy installed XSL stylesheets. 34# match your localy installed XSL stylesheets.
@@ -20,16 +45,14 @@ html:
20 xsltproc $(XSLTOPTS) -o bsp-guide.html bsp-guide-customization.xsl bsp-guide.xml 45 xsltproc $(XSLTOPTS) -o bsp-guide.html bsp-guide-customization.xsl bsp-guide.xml
21 46
22tarball: html 47tarball: html
23 tar -cvzf bsp-guide.tgz style.css bsp-guide.html bsp-guide.pdf figures/bsp-title.png 48 cd $(DOC); tar -cvzf $(DOC).tgz $(TARFILES); cd ..
24 49
25validate: 50validate:
26 xmllint --postvalid --xinclude --noout bsp-guide.xml 51 xmllint --postvalid --xinclude --noout bsp-guide.xml
27 52
28OUTPUTS = bsp-guide.pdf bsp-guide.html
29SOURCES = *.png *.xml *.css *.svg
30
31publish: 53publish:
32 scp -r $(OUTPUTS) $(SOURCES) www.yoctoproject.org:/srv/www/www.yoctoproject.org-doc/bsp-guide 54 scp -r $(MANUALS) $(STYLESHEET) www.yoctoproject.org:/srv/www/www.yoctoproject.org-docs/$(VER)/$(DOC)
55 scp -r $(FIGURES) www.yoctoproject.org:/srv/www/www.yoctoproject.org-docs/$(VER)/$(DOC)/figures
33 56
34clean: 57clean:
35 rm -f $(OUTPUTS) 58 rm -f $(MANUALS)