| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | # This is a single Makefile to handle all generated Yocto Project documents, | 
|  | 2 | # which includes the BitBake User Manual and the Toaster User Manual. | 
|  | 3 | # The Makefile needs to live in the documents directory and all figures used | 
|  | 4 | # in any manuals must be .PNG files and live in the individual book's figures | 
|  | 5 | # directory as well as in the figures directory for the mega-manual. | 
|  | 6 | # | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 7 | # Note that the figures for the Yocto Project Development Tasks Manual | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 8 | # differ depending on the BRANCH being built. | 
|  | 9 | # | 
|  | 10 | # The Makefile has these targets: | 
|  | 11 | #    all:       If you leave off the target then "all" is implied. | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 12 | #               You will generate HTML and a tarball of files. | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 13 | # | 
|  | 14 | #    pdf:	generates a PDF version of a manual.  Not valid for the | 
|  | 15 | #		Quick Start or the mega-manual (single, large HTML file | 
|  | 16 | #		comprised of all Yocto Project manuals). | 
|  | 17 | #    html:	generates an HTML version of a manual. | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 18 | #    tarball:	creates a tarball for the doc files. | 
|  | 19 | #    validate:	validates | 
|  | 20 | #    publish:	pushes generated files to the Yocto Project website | 
|  | 21 | #    clean:	removes files | 
|  | 22 | # | 
|  | 23 | # The Makefile can generate an HTML and PDF version of every document except the | 
|  | 24 | # Yocto Project Quick Start and the single, HTML mega-manual, which is comprised | 
|  | 25 | # of all the individual Yocto Project manuals.  You can generate these two manuals | 
|  | 26 | # in HTML form only.  The variable DOC indicates the folder name for a given manual. | 
|  | 27 | # The variable VER represents the distro version of the Yocto Release for which the | 
|  | 28 | # manuals are being generated.  The variable BRANCH is used to indicate the | 
|  | 29 | # branch (edison or denzil) and is used only when DOC=dev-manual or | 
|  | 30 | # DOC=mega-manual.  If you do not specify a BRANCH, the default branch used | 
|  | 31 | # will be for the latest Yocto Project release.  If you build for either | 
|  | 32 | # edison or denzil, you must use BRANCH. You do not need to use BRANCH for | 
|  | 33 | # any release beyond denzil. | 
|  | 34 | # | 
|  | 35 | # To build a manual, you must invoke Makefile with the DOC argument.  If you | 
|  | 36 | # are going to publish the manual, then you must invoke Makefile with both the | 
|  | 37 | # DOC and the VER argument.  Furthermore, if you are building or publishing | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 38 | # the edison or denzil versions of the Yocto Project Development Tasks Manual or | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 39 | # the mega-manual, you must also use the BRANCH argument. | 
|  | 40 | # | 
|  | 41 | # Examples: | 
|  | 42 | # | 
|  | 43 | #     make DOC=bsp-guide | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 44 | #     make html DOC=brief-yoctoprojectqs | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 45 | #     make pdf DOC=ref-manual | 
|  | 46 | #     make DOC=dev-manual BRANCH=edison | 
|  | 47 | #     make DOC=mega-manual BRANCH=denzil | 
|  | 48 | # | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 49 | # The first example generates the HTML version of the BSP Guide. | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 50 | # The second example generates the HTML version only of the Quick Start.  Note | 
|  | 51 | # that the Quick Start only has an HTML version available.  So, the | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 52 | # 'make DOC=brief-yoctoprojectqs' command would be equivalent. The third example | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 53 | # generates just the PDF version of the Yocto Project Reference Manual. | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 54 | # The fourth example generates the HTML 'edison' version of the YP Development | 
|  | 55 | # Tasks Manual.  The last example | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 56 | # generates the HTML version of the mega-manual and uses the 'denzil' | 
|  | 57 | # branch when choosing figures for the tarball of figures.  Any example that does | 
|  | 58 | # not use the BRANCH argument builds the current version of the manual set. | 
|  | 59 | # | 
|  | 60 | # The publish target pushes the generated manuals to the Yocto Project | 
|  | 61 | # website.  Unless you are a developer on the YP team, you will not succeed in | 
|  | 62 | # pushing manuals to this server.  All files needed for the manual's HTML form are | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 63 | # pushed. | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 64 | # | 
|  | 65 | # Examples: | 
|  | 66 | # | 
|  | 67 | #    make publish DOC=bsp-guide VER=1.7 | 
|  | 68 | #    make publish DOC=adt-manual VER=1.6 | 
|  | 69 | #    make publish DOC=dev-manual VER=1.1.1 BRANCH=edison | 
|  | 70 | #    make publish DOC=dev-manual VER=1.2 BRANCH=denzil | 
|  | 71 | # | 
|  | 72 | # The first example publishes the 1.7 version of both the PDF and HTML versions of | 
|  | 73 | # the BSP Guide.  The second example publishes the 1.6 version of both the PDF and | 
|  | 74 | # HTML versions of the ADT Manual. The third example publishes the 1.1.1 version of | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 75 | # the PDF and HTML YP Development Tasks Manual for the 'edison' branch.  The fourth | 
|  | 76 | # example publishes the 1.2 version of the PDF and HTML YP Development Tasks Manual | 
|  | 77 | # for the 'denzil' branch. | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 78 | # | 
|  | 79 |  | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 80 | ifeq ($(DOC),brief-yoctoprojectqs) | 
|  | 81 | XSLTOPTS = --stringparam html.stylesheet brief-yoctoprojectqs-style.css \ | 
|  | 82 | --stringparam  chapter.autolabel 0 \ | 
|  | 83 | --stringparam  section.autolabel 0 \ | 
|  | 84 | --stringparam  section.label.includes.component.label 0 \ | 
|  | 85 | --xinclude | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 86 | ALLPREQ = html tarball | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 87 | TARFILES = brief-yoctoprojectqs-style.css brief-yoctoprojectqs.html figures/bypqs-title.png \ | 
|  | 88 | figures/yocto-project-transp.png | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 89 | MANUALS = $(DOC)/$(DOC).html | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 90 | FIGURES = figures | 
|  | 91 | STYLESHEET = $(DOC)/*.css | 
|  | 92 |  | 
|  | 93 | endif | 
|  | 94 |  | 
|  | 95 | ifeq ($(DOC),overview-manual) | 
|  | 96 | XSLTOPTS = --xinclude | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 97 | ALLPREQ = html tarball | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 98 | TARFILES = overview-manual-style.css overview-manual.html figures/overview-manual-title.png \ | 
|  | 99 | figures/git-workflow.png figures/source-repos.png figures/index-downloads.png \ | 
|  | 100 | figures/yp-download.png figures/YP-flow-diagram.png figures/key-dev-elements.png \ | 
|  | 101 | figures/poky-reference-distribution.png figures/cross-development-toolchains.png \ | 
|  | 102 | figures/user-configuration.png figures/layer-input.png figures/source-input.png \ | 
|  | 103 | figures/package-feeds.png figures/patching.png figures/source-fetching.png \ | 
|  | 104 | figures/configuration-compile-autoreconf.png figures/analysis-for-package-splitting.png \ | 
|  | 105 | figures/image-generation.png figures/sdk-generation.png figures/images.png \ | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 106 | figures/sdk.png | 
|  | 107 | MANUALS = $(DOC)/$(DOC).html | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 108 | FIGURES = figures | 
|  | 109 | STYLESHEET = $(DOC)/*.css | 
|  | 110 |  | 
|  | 111 | endif | 
|  | 112 |  | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 113 | ifeq ($(DOC),bsp-guide) | 
|  | 114 | XSLTOPTS = --xinclude | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 115 | ALLPREQ = html tarball | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 116 | TARFILES = bsp-style.css bsp-guide.html figures/bsp-title.png \ | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 117 | figures/bsp-dev-flow.png | 
|  | 118 | MANUALS = $(DOC)/$(DOC).html | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 119 | FIGURES = figures | 
|  | 120 | STYLESHEET = $(DOC)/*.css | 
|  | 121 |  | 
|  | 122 | endif | 
|  | 123 |  | 
|  | 124 | ifeq ($(DOC),dev-manual) | 
|  | 125 | XSLTOPTS = --xinclude | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 126 | ALLPREQ = html tarball | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 127 | # | 
|  | 128 | # Note that the tarfile might produce the "Cannot stat: No such file or | 
|  | 129 | # directory" error message for .PNG files that are not present when building | 
|  | 130 | # a particular branch.  The list of files is all-inclusive for all branches. | 
|  | 131 | # Note, if you don't provide a BRANCH option, it defaults to the latest stuff. | 
|  | 132 | # This would be appropriate for "master" branch. | 
|  | 133 | # | 
|  | 134 |  | 
|  | 135 | ifeq ($(BRANCH),edison) | 
|  | 136 | TARFILES = dev-style.css dev-manual.html \ | 
|  | 137 | figures/app-dev-flow.png figures/bsp-dev-flow.png \ | 
|  | 138 | figures/dev-title.png figures/git-workflow.png \ | 
|  | 139 | figures/index-downloads.png figures/kernel-dev-flow.png \ | 
|  | 140 | figures/kernel-example-repos-edison.png \ | 
|  | 141 | figures/kernel-overview-1.png figures/kernel-overview-2.png \ | 
|  | 142 | figures/kernel-overview-3-edison.png \ | 
|  | 143 | figures/source-repos.png figures/yp-download.png \ | 
|  | 144 | figures/wip.png | 
|  | 145 | else ifeq ($(BRANCH),denzil) | 
|  | 146 | TARFILES = dev-style.css dev-manual.html \ | 
|  | 147 | figures/app-dev-flow.png figures/bsp-dev-flow.png \ | 
|  | 148 | figures/dev-title.png figures/git-workflow.png \ | 
|  | 149 | figures/index-downloads.png figures/kernel-dev-flow.png \ | 
|  | 150 | figures/kernel-example-repos-denzil.png \ | 
|  | 151 | figures/kernel-overview-1.png figures/kernel-overview-2.png \ | 
|  | 152 | figures/kernel-overview-3-denzil.png \ | 
|  | 153 | figures/source-repos.png figures/yp-download.png \ | 
|  | 154 | figures/wip.png | 
|  | 155 | else | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 156 | TARFILES = dev-style.css dev-manual.html figures/buildhistory-web.png \ | 
|  | 157 | figures/dev-title.png figures/buildhistory.png \ | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 158 | figures/recipe-workflow.png figures/bitbake-build-flow.png \ | 
| Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame^] | 159 | figures/multiconfig_files.png figures/cute-files-npm-example.png | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 160 | endif | 
|  | 161 |  | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 162 | MANUALS = $(DOC)/$(DOC).html | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 163 | FIGURES = figures | 
|  | 164 | STYLESHEET = $(DOC)/*.css | 
|  | 165 |  | 
|  | 166 | endif | 
|  | 167 |  | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 168 | ifeq ($(DOC),mega-manual) | 
|  | 169 | XSLTOPTS = --stringparam html.stylesheet mega-style.css \ | 
|  | 170 | --stringparam  chapter.autolabel 1 \ | 
|  | 171 | --stringparam  section.autolabel 1 \ | 
|  | 172 | --stringparam  section.label.includes.component.label 1 \ | 
|  | 173 | --xinclude | 
|  | 174 | ALLPREQ = html tarball | 
|  | 175 |  | 
|  | 176 | ifeq ($(BRANCH),edison) | 
|  | 177 | TARFILES = mega-manual.html mega-style.css figures/yocto-environment.png \ | 
|  | 178 | figures/building-an-image.png  \ | 
|  | 179 | figures/using-a-pre-built-image.png \ | 
|  | 180 | figures/poky-title.png \ | 
|  | 181 | figures/adt-title.png figures/bsp-title.png \ | 
|  | 182 | figures/kernel-title.png figures/kernel-architecture-overview.png \ | 
|  | 183 | figures/app-dev-flow.png figures/bsp-dev-flow.png \ | 
|  | 184 | figures/dev-title.png figures/git-workflow.png \ | 
|  | 185 | figures/index-downloads.png figures/kernel-dev-flow.png \ | 
|  | 186 | figures/kernel-example-repos-edison.png \ | 
|  | 187 | figures/kernel-overview-1.png figures/kernel-overview-2.png \ | 
|  | 188 | figures/kernel-overview-3-edison.png \ | 
|  | 189 | figures/source-repos.png figures/yp-download.png \ | 
|  | 190 | figures/wip.png | 
|  | 191 | else ifeq ($(BRANCH),denzil) | 
|  | 192 | TARFILES = mega-manual.html mega-style.css figures/yocto-environment.png \ | 
|  | 193 | figures/building-an-image.png  \ | 
|  | 194 | figures/using-a-pre-built-image.png \ | 
|  | 195 | figures/poky-title.png \ | 
|  | 196 | figures/adt-title.png figures/bsp-title.png \ | 
|  | 197 | figures/kernel-title.png figures/kernel-architecture-overview.png \ | 
|  | 198 | figures/app-dev-flow.png figures/bsp-dev-flow.png \ | 
|  | 199 | figures/dev-title.png figures/git-workflow.png \ | 
|  | 200 | figures/index-downloads.png figures/kernel-dev-flow.png \ | 
|  | 201 | figures/kernel-example-repos-denzil.png \ | 
|  | 202 | figures/kernel-overview-1.png figures/kernel-overview-2.png \ | 
|  | 203 | figures/kernel-overview-3-denzil.png \ | 
|  | 204 | figures/source-repos.png figures/yp-download.png \ | 
|  | 205 | figures/wip.png | 
|  | 206 | else | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 207 | TARFILES = mega-manual.html mega-style.css \ | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 208 | figures/YP-flow-diagram.png \ | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 209 | figures/using-a-pre-built-image.png \ | 
|  | 210 | figures/poky-title.png figures/buildhistory.png \ | 
|  | 211 | figures/buildhistory-web.png \ | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 212 | figures/sdk-title.png figures/bsp-title.png \ | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 213 | figures/kernel-dev-title.png figures/kernel-architecture-overview.png \ | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 214 | figures/bsp-dev-flow.png \ | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 215 | figures/dev-title.png \ | 
|  | 216 | figures/git-workflow.png figures/index-downloads.png \ | 
|  | 217 | figures/kernel-dev-flow.png \ | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 218 | figures/kernel-overview-2-generic.png \ | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 219 | figures/source-repos.png figures/yp-download.png \ | 
|  | 220 | figures/profile-title.png figures/kernelshark-all.png \ | 
|  | 221 | figures/kernelshark-choose-events.png \ | 
|  | 222 | figures/kernelshark-i915-display.png \ | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 223 | figures/kernelshark-output-display.png \ | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 224 | figures/oprofileui-busybox.png figures/oprofileui-copy-to-user.png \ | 
|  | 225 | figures/oprofileui-downloading.png figures/oprofileui-processes.png \ | 
|  | 226 | figures/perf-probe-do_fork-profile.png \ | 
|  | 227 | figures/perf-report-cycles-u.png \ | 
|  | 228 | figures/perf-systemwide.png figures/perf-systemwide-libc.png \ | 
|  | 229 | figures/perf-wget-busybox-annotate-menu.png \ | 
|  | 230 | figures/perf-wget-busybox-annotate-udhcpc.png \ | 
|  | 231 | figures/perf-wget-busybox-debuginfo.png \ | 
|  | 232 | figures/perf-wget-busybox-dso-zoom.png \ | 
|  | 233 | figures/perf-wget-busybox-dso-zoom-menu.png \ | 
|  | 234 | figures/perf-wget-busybox-expanded-stripped.png \ | 
|  | 235 | figures/perf-wget-flat-stripped.png \ | 
|  | 236 | figures/perf-wget-g-copy-from-user-expanded-stripped.png \ | 
|  | 237 | figures/perf-wget-g-copy-to-user-expanded-debuginfo.png \ | 
|  | 238 | figures/perf-wget-g-copy-to-user-expanded-stripped.png \ | 
|  | 239 | figures/perf-wget-g-copy-to-user-expanded-stripped-unresolved-hidden.png \ | 
|  | 240 | figures/pybootchartgui-linux-yocto.png \ | 
|  | 241 | figures/pychart-linux-yocto-rpm.png \ | 
|  | 242 | figures/pychart-linux-yocto-rpm-nostrip.png \ | 
|  | 243 | figures/sched-wakeup-profile.png figures/sysprof-callers.png \ | 
|  | 244 | figures/sysprof-copy-from-user.png figures/sysprof-copy-to-user.png \ | 
|  | 245 | figures/cross-development-toolchains.png \ | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 246 | figures/user-configuration.png \ | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 247 | figures/source-input.png figures/package-feeds.png \ | 
|  | 248 | figures/layer-input.png figures/images.png figures/sdk.png \ | 
|  | 249 | figures/source-fetching.png figures/patching.png \ | 
|  | 250 | figures/configuration-compile-autoreconf.png \ | 
|  | 251 | figures/analysis-for-package-splitting.png \ | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 252 | figures/image-generation.png figures/key-dev-elements.png\ | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 253 | figures/sdk-generation.png figures/recipe-workflow.png \ | 
|  | 254 | figures/build-workspace-directory.png figures/mega-title.png \ | 
| Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 255 | figures/toaster-title.png figures/hosted-service.png figures/multiconfig_files.png \ | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 256 | figures/simple-configuration.png figures/poky-reference-distribution.png \ | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 257 | figures/compatible-layers.png figures/import-layer.png figures/new-project.png \ | 
|  | 258 | figures/sdk-environment.png figures/sdk-installed-standard-sdk-directory.png \ | 
|  | 259 | figures/sdk-devtool-add-flow.png figures/sdk-installed-extensible-sdk-directory.png \ | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 260 | figures/sdk-devtool-modify-flow.png \ | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 261 | figures/sdk-devtool-upgrade-flow.png figures/bitbake-build-flow.png figures/bypqs-title.png \ | 
| Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 262 | figures/overview-manual-title.png figures/sdk-autotools-flow.png figures/sdk-makefile-flow.png \ | 
| Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame^] | 263 | figures/bb_multiconfig_files.png figures/bitbake-title.png figures/cute-files-npm-example.png | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 264 | endif | 
|  | 265 |  | 
|  | 266 | MANUALS = $(DOC)/$(DOC).html | 
|  | 267 | FIGURES = figures | 
|  | 268 | STYLESHEET = $(DOC)/*.css | 
|  | 269 |  | 
|  | 270 | endif | 
|  | 271 |  | 
|  | 272 | ifeq ($(DOC),ref-manual) | 
|  | 273 | XSLTOPTS = --xinclude | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 274 | ALLPREQ = html tarball | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 275 | TARFILES = ref-manual.html ref-style.css figures/poky-title.png \ | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 276 | figures/build-workspace-directory.png | 
|  | 277 | MANUALS = $(DOC)/$(DOC).html | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 278 | FIGURES = figures | 
|  | 279 | STYLESHEET = $(DOC)/*.css | 
|  | 280 | endif | 
|  | 281 |  | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 282 | ifeq ($(DOC),sdk-manual) | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 283 | XSLTOPTS = --xinclude | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 284 | ALLPREQ = html tarball | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 285 | TARFILES = sdk-manual.html sdk-style.css figures/sdk-title.png \ | 
|  | 286 | figures/sdk-environment.png figures/sdk-installed-standard-sdk-directory.png \ | 
|  | 287 | figures/sdk-installed-extensible-sdk-directory.png figures/sdk-devtool-add-flow.png \ | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 288 | figures/sdk-devtool-modify-flow.png \ | 
|  | 289 | figures/sdk-devtool-upgrade-flow.png figures/sdk-autotools-flow.png figures/sdk-makefile-flow.png | 
|  | 290 | MANUALS = $(DOC)/$(DOC).html | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 291 | FIGURES = figures | 
|  | 292 | STYLESHEET = $(DOC)/*.css | 
|  | 293 | endif | 
|  | 294 |  | 
|  | 295 | ifeq ($(DOC),profile-manual) | 
|  | 296 | XSLTOPTS = --xinclude | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 297 | ALLPREQ = html tarball | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 298 | TARFILES = profile-manual.html profile-manual-style.css \ | 
|  | 299 | figures/profile-title.png figures/kernelshark-all.png \ | 
|  | 300 | figures/kernelshark-choose-events.png \ | 
|  | 301 | figures/kernelshark-i915-display.png \ | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 302 | figures/kernelshark-output-display.png \ | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 303 | figures/oprofileui-busybox.png figures/oprofileui-copy-to-user.png \ | 
|  | 304 | figures/oprofileui-downloading.png figures/oprofileui-processes.png \ | 
|  | 305 | figures/perf-probe-do_fork-profile.png \ | 
|  | 306 | figures/perf-report-cycles-u.png \ | 
|  | 307 | figures/perf-systemwide.png figures/perf-systemwide-libc.png \ | 
|  | 308 | figures/perf-wget-busybox-annotate-menu.png \ | 
|  | 309 | figures/perf-wget-busybox-annotate-udhcpc.png \ | 
|  | 310 | figures/perf-wget-busybox-debuginfo.png \ | 
|  | 311 | figures/perf-wget-busybox-dso-zoom.png \ | 
|  | 312 | figures/perf-wget-busybox-dso-zoom-menu.png \ | 
|  | 313 | figures/perf-wget-busybox-expanded-stripped.png \ | 
|  | 314 | figures/perf-wget-flat-stripped.png \ | 
|  | 315 | figures/perf-wget-g-copy-from-user-expanded-stripped.png \ | 
|  | 316 | figures/perf-wget-g-copy-to-user-expanded-debuginfo.png \ | 
|  | 317 | figures/perf-wget-g-copy-to-user-expanded-stripped.png \ | 
|  | 318 | figures/perf-wget-g-copy-to-user-expanded-stripped-unresolved-hidden.png \ | 
|  | 319 | figures/pybootchartgui-linux-yocto.png \ | 
|  | 320 | figures/pychart-linux-yocto-rpm.png \ | 
|  | 321 | figures/pychart-linux-yocto-rpm-nostrip.png \ | 
|  | 322 | figures/sched-wakeup-profile.png figures/sysprof-callers.png \ | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 323 | figures/sysprof-copy-from-user.png figures/sysprof-copy-to-user.png | 
|  | 324 | MANUALS = $(DOC)/$(DOC).html | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 325 | FIGURES = figures | 
|  | 326 | STYLESHEET = $(DOC)/*.css | 
|  | 327 | endif | 
|  | 328 |  | 
|  | 329 | ifeq ($(DOC),kernel-dev) | 
|  | 330 | XSLTOPTS = --xinclude | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 331 | ALLPREQ = html tarball | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 332 | TARFILES = kernel-dev.html kernel-dev-style.css \ | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 333 | figures/kernel-dev-title.png figures/kernel-overview-2-generic.png \ | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 334 | figures/kernel-architecture-overview.png figures/kernel-dev-flow.png | 
|  | 335 | MANUALS = $(DOC)/$(DOC).html | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 336 | FIGURES = figures | 
|  | 337 | STYLESHEET = $(DOC)/*.css | 
|  | 338 | endif | 
|  | 339 |  | 
|  | 340 | ifeq ($(DOC),toaster-manual) | 
|  | 341 | XSLTOPTS = --xinclude | 
|  | 342 | ALLPREQ = html tarball | 
|  | 343 | TARFILES = toaster-manual.html toaster-manual-style.css \ | 
|  | 344 | figures/toaster-title.png figures/simple-configuration.png \ | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 345 | figures/hosted-service.png \ | 
|  | 346 | figures/compatible-layers.png figures/import-layer.png figures/new-project.png | 
| Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 347 | MANUALS = $(DOC)/$(DOC).html | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 348 | FIGURES = figures | 
|  | 349 | STYLESHEET = $(DOC)/*.css | 
|  | 350 | endif | 
|  | 351 |  | 
|  | 352 |  | 
|  | 353 | ## | 
|  | 354 | # These URI should be rewritten by your distribution's xml catalog to | 
|  | 355 | # match your locally installed XSL stylesheets. | 
|  | 356 | XSL_BASE_URI  = http://docbook.sourceforge.net/release/xsl/1.76.1 | 
|  | 357 | XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl | 
|  | 358 |  | 
|  | 359 | all: $(ALLPREQ) | 
|  | 360 |  | 
|  | 361 | pdf: | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 362 | ifeq ($(DOC),brief-yoctoprojectqs) | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 363 | @echo " " | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 364 | @echo "ERROR: You cannot generate a PDF file for brief-yoctoprojectqs." | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 365 | @echo " " | 
|  | 366 |  | 
|  | 367 | else ifeq ($(DOC),mega-manual) | 
|  | 368 | @echo " " | 
|  | 369 | @echo "ERROR: You cannot generate a mega-manual PDF file." | 
|  | 370 | @echo " " | 
|  | 371 |  | 
|  | 372 | else | 
|  | 373 |  | 
|  | 374 | cd $(DOC); ../tools/poky-docbook-to-pdf $(DOC).xml ../template; cd .. | 
|  | 375 | endif | 
|  | 376 |  | 
|  | 377 | html: | 
|  | 378 | ifeq ($(DOC),mega-manual) | 
|  | 379 | #       See http://www.sagehill.net/docbookxsl/HtmlOutput.html | 
|  | 380 | @echo " " | 
|  | 381 | @echo "******** Building "$(DOC) | 
|  | 382 | @echo " " | 
|  | 383 | cd $(DOC); xsltproc $(XSLTOPTS) -o $(DOC).html $(DOC)-customization.xsl $(DOC).xml; cd .. | 
|  | 384 | @echo " " | 
|  | 385 | @echo "******** Using mega-manual.sed to process external links" | 
|  | 386 | @echo " " | 
|  | 387 | cd $(DOC); sed -f ../tools/mega-manual.sed < mega-manual.html > mega-output.html; cd .. | 
|  | 388 | @echo " " | 
|  | 389 | @echo "******** Cleaning up transient file mega-output.html" | 
|  | 390 | @echo " " | 
|  | 391 | cd $(DOC); rm mega-manual.html; mv mega-output.html mega-manual.html; cd .. | 
|  | 392 | else | 
|  | 393 | #       See http://www.sagehill.net/docbookxsl/HtmlOutput.html | 
|  | 394 | @echo " " | 
|  | 395 | @echo "******** Building "$(DOC) | 
|  | 396 | @echo " " | 
|  | 397 | cd $(DOC); xsltproc $(XSLTOPTS) -o $(DOC).html $(DOC)-customization.xsl $(DOC).xml; cd .. | 
|  | 398 | endif | 
|  | 399 |  | 
|  | 400 |  | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 401 | tarball: html | 
|  | 402 | @echo " " | 
|  | 403 | @echo "******** Creating Tarball of document files" | 
|  | 404 | @echo " " | 
|  | 405 | cd $(DOC); tar -cvzf $(DOC).tgz $(TARFILES); cd .. | 
|  | 406 |  | 
|  | 407 | validate: | 
|  | 408 | cd $(DOC); xmllint --postvalid --xinclude --noout $(DOC).xml; cd .. | 
|  | 409 |  | 
|  | 410 |  | 
|  | 411 | publish: | 
|  | 412 | @if test -f $(DOC)/$(DOC).html; \ | 
|  | 413 | then \ | 
|  | 414 | echo " "; \ | 
|  | 415 | echo "******** Publishing "$(DOC)".html"; \ | 
|  | 416 | echo " "; \ | 
|  | 417 | scp -r $(MANUALS) $(STYLESHEET) docs.yp:/var/www/www.yoctoproject.org-docs/$(VER)/$(DOC); \ | 
|  | 418 | cd $(DOC); scp -r $(FIGURES) docs.yp:/var/www/www.yoctoproject.org-docs/$(VER)/$(DOC); \ | 
|  | 419 | else \ | 
|  | 420 | echo " "; \ | 
|  | 421 | echo $(DOC)".html missing.  Generate the file first then try again."; \ | 
|  | 422 | echo " "; \ | 
|  | 423 | fi | 
|  | 424 |  | 
|  | 425 | clean: | 
|  | 426 | rm -rf $(MANUALS); rm $(DOC)/$(DOC).tgz; |