summaryrefslogtreecommitdiffstats
path: root/documentation/adt-manual
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/adt-manual
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/adt-manual')
-rw-r--r--documentation/adt-manual/Makefile36
1 files changed, 29 insertions, 7 deletions
diff --git a/documentation/adt-manual/Makefile b/documentation/adt-manual/Makefile
index 560913a69d..f23de5c561 100644
--- a/documentation/adt-manual/Makefile
+++ b/documentation/adt-manual/Makefile
@@ -1,9 +1,33 @@
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 appendix.autolabel A \ 20 --stringparam appendix.autolabel A \
4 --stringparam section.autolabel 1 \ 21 --stringparam section.autolabel 1 \
5 --stringparam section.label.includes.component.label 1 \ 22 --stringparam section.label.includes.component.label 1 \
6 --xinclude 23 --xinclude
24VER = 1.0
25DOC = adt-manual
26ALLPREQ = html pdf tarball
27TARFILES = adt-manual.html adt-manual.pdf style.css figures/adt-title.png
28MANUALS = $(DOC).html $(DOC).pdf
29FIGURES = figures
30STYLESHEET = *.css
7 31
8## 32##
9# 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
@@ -27,16 +51,14 @@ html:
27 xsltproc $(XSLTOPTS) -o adt-manual.html adt-manual-customization.xsl adt-manual.xml 51 xsltproc $(XSLTOPTS) -o adt-manual.html adt-manual-customization.xsl adt-manual.xml
28 52
29tarball: html 53tarball: html
30 tar -cvzf adt-manual.tgz adt-manual.html adt-manual.pdf style.css figures/adt-title.png figures/yocto-project-transp.png 54 cd $(DOC); tar -cvzf $(DOC).tgz $(TARFILES); cd ..
31 55
32validate: 56validate:
33 xmllint --postvalid --xinclude --noout adt-manual.xml 57 xmllint --postvalid --xinclude --noout adt-manual.xml
34 58
35OUTPUTS = adt-manual.tgz adt-manual.html adt-manual.pdf
36SOURCES = *.png *.xml *.css
37
38publish: 59publish:
39 scp -r $(OUTPUTS) $(SOURCES) www.yoctoproject.org:/srv/www/www.yoctoproject.org-doc/adt-manual 60 scp -r $(MANUALS) $(STYLESHEET) www.yoctoproject.org:/srv/www/www.yoctoproject.org-docs/$(VER)/$(DOC)
61 scp -r $(FIGURES) www.yoctoproject.org:/srv/www/www.yoctoproject.org-docs/$(VER)/$(DOC)/figures
40 62
41clean: 63clean:
42 rm -f $(OUTPUTS) 64 rm -f $(MANUALS)