summaryrefslogtreecommitdiffstats
path: root/documentation/yocto-project-qs
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/yocto-project-qs
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/yocto-project-qs')
-rw-r--r--documentation/yocto-project-qs/Makefile33
1 files changed, 27 insertions, 6 deletions
diff --git a/documentation/yocto-project-qs/Makefile b/documentation/yocto-project-qs/Makefile
index 41c35e11a9..c58a8e914f 100644
--- a/documentation/yocto-project-qs/Makefile
+++ b/documentation/yocto-project-qs/Makefile
@@ -1,6 +1,29 @@
1# You must call this Makefile using the following form:
2#
3# make
4# make html
5# make tarball
6# make clean
7# make publish
8#
9# "make" creates the HTML and tarball.
10# "make html" creates just the HTML
11# "make tarball" creates the tarball
12# "make clean" removes the HTML file
13# "make publish" pushes the HTML, figures, and stylesheet to the web server
14#
15
1XSLTOPTS = --stringparam html.stylesheet style.css \ 16XSLTOPTS = --stringparam html.stylesheet style.css \
2 --xinclude 17 --xinclude
3 18
19VER = 1.0
20DOC = yocto-quick-start
21ALLPREQ = html pdf tarball
22TARFILES = yocto-project-qs.html style.css figures/yocto-environment.png figures/building-an-image.png figures/using-a-pre-built-image.png figures/yocto-project-transp.png
23MANUALS = yocto-project-qs.html
24FIGURES = figures
25STYLESHEET = *.css
26
4XSL_BASE_URI = http://docbook.sourceforge.net/release/xsl/current 27XSL_BASE_URI = http://docbook.sourceforge.net/release/xsl/current
5XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl 28XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl
6 29
@@ -17,16 +40,14 @@ html:
17 xsltproc $(XSLTOPTS) -o yocto-project-qs.html yocto-project-qs-customization.xsl yocto-project-qs.xml 40 xsltproc $(XSLTOPTS) -o yocto-project-qs.html yocto-project-qs-customization.xsl yocto-project-qs.xml
18 41
19tarball: html 42tarball: html
20 tar -cvzf yocto-project-qs.tgz yocto-project-qs.html ypqs.pdf style.css figures/yocto-environment.png figures/building-an-image.png figures/using-a-pre-built-image.png figures/yocto-project-transp.png 43 cd $(DOC); tar -cvzf yocto-project-qs.tgz $(TARFILES); cd ..
21 44
22validate: 45validate:
23 xmllint --postvalid --xinclude --noout yocto-project-qs.xml 46 xmllint --postvalid --xinclude --noout yocto-project-qs.xml
24 47
25OUTPUTS = yocto-project-qs.tgz yocto-project-qs.html ypqs.pdf
26SOURCES = *.png *.xml *.css
27
28publish: 48publish:
29 scp -r $(OUTPUTS) $(SOURCES) www.yoctoproject.org:/srv/www/www.yoctoproject.org-doc/yocto-quick-start 49 scp -r $(MANUALS) $(STYLESHEET) www.yoctoproject.org:/srv/www/www.yoctoproject.org-docs/$(VER)/$(DOC)
50 scp -r $(FIGURES) www.yoctoproject.org:/srv/www/www.yoctoproject.org-docs/$(VER)/$(DOC)/figures
30 51
31clean: 52clean:
32 rm -f $(OUTPUTS) 53 rm -f $(MANUALS)