summaryrefslogtreecommitdiffstats
path: root/documentation/yocto-project-qs/Makefile
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-10-15 15:08:01 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-10-27 07:50:33 +0100
commit00e061b56455e8bc6ab937a8114386f921f53fa5 (patch)
tree4f9bc25e480b9cc73d6b39efe35a4ee92b8c0804 /documentation/yocto-project-qs/Makefile
parent74e47d42d60161a3cab97c923e852a42e1ce5940 (diff)
downloadpoky-00e061b56455e8bc6ab937a8114386f921f53fa5.tar.gz
documentation: Add Yocto quickstart guide
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'documentation/yocto-project-qs/Makefile')
-rw-r--r--documentation/yocto-project-qs/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/documentation/yocto-project-qs/Makefile b/documentation/yocto-project-qs/Makefile
new file mode 100644
index 0000000000..9f45058c51
--- /dev/null
+++ b/documentation/yocto-project-qs/Makefile
@@ -0,0 +1,32 @@
1XSLTOPTS = --stringparam html.stylesheet style.css \
2 --xinclude
3
4XSL_BASE_URI = http://docbook.sourceforge.net/release/xsl/current
5XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl
6
7all: html tarball
8
9##
10# These URI should be rewritten by your distribution's xml catalog to
11# match your localy installed XSL stylesheets.
12
13html:
14# See http://www.sagehill.net/docbookxsl/HtmlOutput.html
15
16# xsltproc $(XSLTOPTS) -o yocto-project-qs.html $(XSL_XHTML_URI) yocto-project-qs.xml
17 xsltproc $(XSLTOPTS) -o yocto-project-qs.html yocto-project-qs-customization.xsl yocto-project-qs.xml
18
19tarball: html
20 tar -cvzf yocto-project-qs.tgz 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
21
22validate:
23 xmllint --postvalid --xinclude --noout yocto-project-qs.xml
24
25OUTPUTS = yocto-project-qs.tgz yocto-project-qs.html
26SOURCES = *.png *.xml *.css
27
28publish:
29 scp -r $(OUTPUTS) $(SOURCES) o-hand.com:/srv/www/pokylinux.org/doc/
30
31clean:
32 rm -f $(OUTPUTS)