mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 00:32:12 +02:00
I removed the hardcoded name from the publish option. This involved updating the Makefiles. The publish option is still temporary as a more permanent solution is being created. (From yocto-docs rev: 6878b2ccdb98b18c438ca419e1caad0041a2bc00) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
1.2 KiB
Makefile
35 lines
1.2 KiB
Makefile
XSLTOPTS = --stringparam html.stylesheet style.css \
|
|
--xinclude
|
|
|
|
XSL_BASE_URI = http://docbook.sourceforge.net/release/xsl/current
|
|
XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl
|
|
|
|
all: html tarball
|
|
|
|
##
|
|
# These URI should be rewritten by your distribution's xml catalog to
|
|
# match your localy installed XSL stylesheets.
|
|
|
|
html:
|
|
# See http://www.sagehill.net/docbookxsl/HtmlOutput.html
|
|
|
|
# xsltproc $(XSLTOPTS) -o yocto-project-qs.html $(XSL_XHTML_URI) yocto-project-qs.xml
|
|
xsltproc $(XSLTOPTS) -o yocto-project-qs.html yocto-project-qs-customization.xsl yocto-project-qs.xml
|
|
|
|
tarball: html
|
|
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
|
|
|
|
validate:
|
|
xmllint --postvalid --xinclude --noout yocto-project-qs.xml
|
|
|
|
MANUALS = yocto-project-qs.html
|
|
FIGURES = figures/*.png
|
|
STYLESHEET = *.css
|
|
|
|
publish:
|
|
scp -r $(MANUALS) $(STYLESHEET) www.yoctoproject.org:/srv/www/www.yoctoproject.org-docs/yocto-quick-start
|
|
scp -r $(FIGURES) www.yoctoproject.org:/srv/www/www.yoctoproject.org-docs/yocto-quick-start/figures
|
|
|
|
clean:
|
|
rm -f $(MANUALS)
|