summaryrefslogtreecommitdiffstats
path: root/documentation/yocto-project-qs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/yocto-project-qs/Makefile')
-rw-r--r--documentation/yocto-project-qs/Makefile53
1 files changed, 0 insertions, 53 deletions
diff --git a/documentation/yocto-project-qs/Makefile b/documentation/yocto-project-qs/Makefile
deleted file mode 100644
index c58a8e914f..0000000000
--- a/documentation/yocto-project-qs/Makefile
+++ /dev/null
@@ -1,53 +0,0 @@
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
16XSLTOPTS = --stringparam html.stylesheet style.css \
17 --xinclude
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
27XSL_BASE_URI = http://docbook.sourceforge.net/release/xsl/current
28XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl
29
30all: html tarball
31
32##
33# These URI should be rewritten by your distribution's xml catalog to
34# match your localy installed XSL stylesheets.
35
36html:
37# See http://www.sagehill.net/docbookxsl/HtmlOutput.html
38
39# xsltproc $(XSLTOPTS) -o yocto-project-qs.html $(XSL_XHTML_URI) yocto-project-qs.xml
40 xsltproc $(XSLTOPTS) -o yocto-project-qs.html yocto-project-qs-customization.xsl yocto-project-qs.xml
41
42tarball: html
43 cd $(DOC); tar -cvzf yocto-project-qs.tgz $(TARFILES); cd ..
44
45validate:
46 xmllint --postvalid --xinclude --noout yocto-project-qs.xml
47
48publish:
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
51
52clean:
53 rm -f $(MANUALS)