aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Holmes <mike.holmes@linaro.org>2015-12-04 15:46:28 -0500
committerMaxim Uvarov <maxim.uvarov@linaro.org>2015-12-07 15:30:32 +0300
commita4f8caf51f5b33d63c70dd42ed92c8fbc73c8c1d (patch)
treee44bec56b13b0829a46a21b1ea8ff5212d069ee6 /doc
parentb6407767cabfcfb75592efbb3cfb9ea4c44674a7 (diff)
doc: guides: embed icons and images in html
The icons in the generated guide have a system dependent location. If the system used to view the docs does not have asciidoc installed no icons will be displayed. Embed the images so that the output is self-contained. Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/implementers-guide/Makefile.am2
-rw-r--r--doc/users-guide/Makefile.am2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/implementers-guide/Makefile.am b/doc/implementers-guide/Makefile.am
index d65396801..f0832f1e3 100644
--- a/doc/implementers-guide/Makefile.am
+++ b/doc/implementers-guide/Makefile.am
@@ -6,7 +6,7 @@ all-local: $(TARGET)
$(TARGET): implementers-guide.adoc
@mkdir -p $(top_srcdir)/doc/output
- asciidoc -b html5 -a icons -a toc2 -a max-width=55em --out-file=$@ $<
+ asciidoc -a data-uri -b html5 -a icons -a toc2 -a max-width=55em --out-file=$@ $<
clean-local:
rm -f $(TARGET)
diff --git a/doc/users-guide/Makefile.am b/doc/users-guide/Makefile.am
index 8e6031279..383894a24 100644
--- a/doc/users-guide/Makefile.am
+++ b/doc/users-guide/Makefile.am
@@ -6,7 +6,7 @@ all-local: $(TARGET)
$(TARGET): users-guide.adoc
@mkdir -p $(top_srcdir)/doc/output
- asciidoc -b html5 -a icons -a toc2 -a max-width=55em --out-file=$@ $<
+ asciidoc -a data-uri -b html5 -a icons -a toc2 -a max-width=55em --out-file=$@ $<
clean-local:
rm -f $(TARGET)