diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2013-01-16 12:37:54 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-27 13:54:09 +0000 |
commit | 9bd5435f6f05b8ab9c01f5e353d7bc2426712301 (patch) | |
tree | 3697767be12f1230680a2a5b098decbb3a42449e /documentation | |
parent | 33b7996446dd5408d56787c62ae452eae8ab2492 (diff) | |
download | poky-9bd5435f6f05b8ab9c01f5e353d7bc2426712301.tar.gz |
Makefile: Added support for the new profile-manual.
(From yocto-docs rev: 09183423d3049b954b0f0a5d882bf85218b5aff9)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/documentation/Makefile b/documentation/Makefile index 13a70a0e8d..3f0ceed368 100644 --- a/documentation/Makefile +++ b/documentation/Makefile | |||
@@ -221,6 +221,36 @@ FIGURES = figures | |||
221 | STYLESHEET = $(DOC)/*.css | 221 | STYLESHEET = $(DOC)/*.css |
222 | endif | 222 | endif |
223 | 223 | ||
224 | ifeq ($(DOC),profile-manual) | ||
225 | XSLTOPTS = --stringparam html.stylesheet profile-manual-style.css \ | ||
226 | --stringparam chapter.autolabel 1 \ | ||
227 | --stringparam appendix.autolabel A \ | ||
228 | --stringparam section.autolabel 1 \ | ||
229 | --stringparam section.label.includes.component.label 1 \ | ||
230 | --xinclude | ||
231 | ALLPREQ = html pdf tarball | ||
232 | TARFILES = profile-manual.html profile-manual.pdf profile-manual-style.css \ | ||
233 | figures/profile-title.png figures/kernelshark-all.png \ | ||
234 | figures/kernelshark-choose-events.png figures/kernelshark-i915-display.png \ | ||
235 | figures/kernelshark-output-display.png figures/lttngmain0.png \ | ||
236 | figures/oprofileui-busybox.png figures/oprofileui-copy-to-user.png \ | ||
237 | figures/oprofileui-downloading.png figures/oprofileui-processes.png \ | ||
238 | figures/perf-probe-do_fork-profile.png figures/perf-report-cycles-u.png \ | ||
239 | figures/perf-systemwide.png figures/perf-systemwide-libc.png \ | ||
240 | figures/perf-wget-busybox-annotate-menu.png figures/perf-wget-busybox-annotate-udhcpc.png \ | ||
241 | figures/perf-wget-busybox-debuginfo.png figures/perf-wget-busybox-dso-zoom.png \ | ||
242 | figures/perf-wget-busybox-dso-zoom-menu.png figures/perf-wget-busybox-expanded-stripped.png \ | ||
243 | figures/perf-wget-flat-stripped.png figures/perf-wget-g-copy-from-user-expanded-stripped.png \ | ||
244 | figures/perf-wget-g-copy-to-user-expanded-debuginfo.png figures/perf-wget-g-copy-to-user-expanded-stripped.png \ | ||
245 | figures/perf-wget-g-copy-to-user-expanded-stripped-unresolved-hidden.png figures/pybootchartgui-linux-yocto.png \ | ||
246 | figures/pychart-linux-yocto-rpm.png figures/pychart-linux-yocto-rpm-nostrip.png \ | ||
247 | figures/sched-wakeup-profile.png figures/sysprof-callers.png \ | ||
248 | figures/sysprof-copy-from-user.png figures/sysprof-copy-to-user.png | ||
249 | MANUALS = $(DOC)/$(DOC).html $(DOC)/$(DOC).pdf | ||
250 | FIGURES = figures | ||
251 | STYLESHEET = $(DOC)/*.css | ||
252 | endif | ||
253 | |||
224 | ifeq ($(DOC),kernel-manual) | 254 | ifeq ($(DOC),kernel-manual) |
225 | XSLTOPTS = --stringparam html.stylesheet kernel-style.css \ | 255 | XSLTOPTS = --stringparam html.stylesheet kernel-style.css \ |
226 | --stringparam chapter.autolabel 1 \ | 256 | --stringparam chapter.autolabel 1 \ |