diff options
| author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2014-03-13 11:20:04 -0600 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-25 13:23:05 +0000 |
| commit | 019c868596988e39327a8663b69a75e9d35cdaf8 (patch) | |
| tree | 4dad78235375318ddb5905c35135e3931684bdca | |
| parent | b80943fc47503eb4c6650b7ddd9518a30e1fad85 (diff) | |
| download | poky-019c868596988e39327a8663b69a75e9d35cdaf8.tar.gz | |
bitbake: Makefile: Added publish tag so the book can be published.
(Bitbake rev: a895f76836c867822f5be33546e51b285e7016e0)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | bitbake/doc/Makefile | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/bitbake/doc/Makefile b/bitbake/doc/Makefile index 29774e41cc..6b2af67326 100644 --- a/bitbake/doc/Makefile +++ b/bitbake/doc/Makefile | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | # make pdf DOC=user-manual | 22 | # make pdf DOC=user-manual |
| 23 | # | 23 | # |
| 24 | # The first example generates the HTML and PDF versions of the User Manual. | 24 | # The first example generates the HTML and PDF versions of the User Manual. |
| 25 | # The second example generates the HTML version only of the User Manual. | 25 | # The second example generates the HTML version only of the User Manual. |
| 26 | # | 26 | # |
| 27 | 27 | ||
| 28 | ifeq ($(DOC),user-manual) | 28 | ifeq ($(DOC),user-manual) |
| @@ -73,5 +73,19 @@ tarball: html | |||
| 73 | validate: | 73 | validate: |
| 74 | cd $(DOC); xmllint --postvalid --xinclude --noout $(DOC).xml; cd .. | 74 | cd $(DOC); xmllint --postvalid --xinclude --noout $(DOC).xml; cd .. |
| 75 | 75 | ||
| 76 | publish: | ||
| 77 | @if test -f $(DOC)/$(DOC).html; \ | ||
| 78 | then \ | ||
| 79 | echo " "; \ | ||
| 80 | echo "******** Publishing "$(DOC)".html"; \ | ||
| 81 | echo " "; \ | ||
| 82 | scp -r $(MANUALS) $(STYLESHEET) docs.yp:/var/www/www.yoctoproject.org-docs/$(VER)/$(DOC); \ | ||
| 83 | cd $(DOC); scp -r $(FIGURES) docs.yp:/var/www/www.yoctoproject.org-docs/$(VER)/$(DOC); \ | ||
| 84 | else \ | ||
| 85 | echo " "; \ | ||
| 86 | echo $(DOC)".html missing. Generate the file first then try again."; \ | ||
| 87 | echo " "; \ | ||
| 88 | fi | ||
| 89 | |||
| 76 | clean: | 90 | clean: |
| 77 | rm -rf $(MANUALS); rm $(DOC)/$(DOC).tgz; | 91 | rm -rf $(MANUALS); rm $(DOC)/$(DOC).tgz; |
