summaryrefslogtreecommitdiffstats
path: root/documentation/adt-manual/Makefile
diff options
context:
space:
mode:
authorBeth Flanagan <elizabeth.flanagan@intel.com>2011-06-02 10:18:35 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-20 22:35:16 +0000
commita02537187fcf131f1b97ec38d6f88a1ae82649fa (patch)
treea2020aa4a09031610aea55522494d4aa98bbda9d /documentation/adt-manual/Makefile
parent78d092fe7a6b12e737ddc7c9564a72ad85a8a3c9 (diff)
downloadpoky-a02537187fcf131f1b97ec38d6f88a1ae82649fa.tar.gz
documentation: [YOCTO #1025] build system for docs
These changes fix the following issues: 1. Multiple Makefiles. There really is no need for this. 2. Unable to maintain more than one version of the docs on the webserver. This is a quick fix to enable the above. In order to build the documentation, at the top level, issue a: make all DOC=<doc directory name> make all DOC=kernel-manual Also, some changes need to occur on the webserver to fully incorporate these fixes. http://www.yoctoproject.org/documentation/ The docs are now published to: http://www.yoctoproject.org/docs/<Release MM.mm>/<doc name> The main page should be changed to point not only to the current doc release, but also to the prior releases. This will enable us to maintain prior release documentation without stomping over it when we publish new docs. Also, we'll need to repoint the yocto-quick-start link to yocto-project-qs. Or rename documentation/yocto-project-qs/* to support the website naming. (From yocto-docs rev: b5cb0801691dbedfa9d3733a6b62450c8a674fa0) Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/adt-manual/Makefile')
-rw-r--r--documentation/adt-manual/Makefile64
1 files changed, 0 insertions, 64 deletions
diff --git a/documentation/adt-manual/Makefile b/documentation/adt-manual/Makefile
deleted file mode 100644
index f23de5c561..0000000000
--- a/documentation/adt-manual/Makefile
+++ /dev/null
@@ -1,64 +0,0 @@
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
18XSLTOPTS = --stringparam html.stylesheet style.css \
19 --stringparam chapter.autolabel 1 \
20 --stringparam appendix.autolabel A \
21 --stringparam section.autolabel 1 \
22 --stringparam section.label.includes.component.label 1 \
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
31
32##
33# These URI should be rewritten by your distribution's xml catalog to
34# match your localy installed XSL stylesheets.
35XSL_BASE_URI = http://docbook.sourceforge.net/release/xsl/current
36XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl
37
38all: html pdf tarball
39
40pdf:
41 ../tools/poky-docbook-to-pdf adt-manual.xml ../template
42
43##
44# These URI should be rewritten by your distribution's xml catalog to
45# match your localy installed XSL stylesheets.
46
47html:
48# See http://www.sagehill.net/docbookxsl/HtmlOutput.html
49
50# xsltproc $(XSLTOPTS) -o adt-manual.html $(XSL_XHTML_URI) adt-manual.xml
51 xsltproc $(XSLTOPTS) -o adt-manual.html adt-manual-customization.xsl adt-manual.xml
52
53tarball: html
54 cd $(DOC); tar -cvzf $(DOC).tgz $(TARFILES); cd ..
55
56validate:
57 xmllint --postvalid --xinclude --noout adt-manual.xml
58
59publish:
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
62
63clean:
64 rm -f $(MANUALS)