diff options
author | Timo Mueller <timo.mueller@bmw-carit.de> | 2012-11-30 09:59:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-14 15:29:54 +0000 |
commit | b73e6cb010a7b37de31ca9cbf325ccbd1d722575 (patch) | |
tree | 39039748351cd3a5d57e1b3df7ef93d36642468c /documentation | |
parent | d37c418cf4cd4233fb403e6d279cd16611623490 (diff) | |
download | poky-b73e6cb010a7b37de31ca9cbf325ccbd1d722575.tar.gz |
documentation/Makefile: Support for making Eclipse HTML bsp guide
This target will generate eclipse help for the bsp-guide using
the bsp-guide-eclipse-customization.xsl stylesheet.
The output will be generated to a separate directory which can be used
for integrating the documentation into eclipse.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/documentation/Makefile b/documentation/Makefile index ab8ff9e652..67885a9981 100644 --- a/documentation/Makefile +++ b/documentation/Makefile | |||
@@ -323,12 +323,14 @@ endif | |||
323 | eclipse: BASE_DIR = html/$(DOC)/ | 323 | eclipse: BASE_DIR = html/$(DOC)/ |
324 | 324 | ||
325 | eclipse: | 325 | eclipse: |
326 | ifeq ($(filter $(DOC), adt-manual dev-manual),) | 326 | ifeq ($(filter $(DOC), adt-manual bsp-guide dev-manual),) |
327 | @echo " " | 327 | @echo " " |
328 | @echo "ERROR: You can only create eclipse documentation" | 328 | @echo "ERROR: You can only create eclipse documentation" |
329 | @echo " of the following documentation parts:" | 329 | @echo " of the following documentation parts:" |
330 | @echo " " | 330 | @echo " " |
331 | @echo " - The Yocto Project Application Developer's Guide (adt-manual)" | 331 | @echo " - The Yocto Project Application Developer's Guide (adt-manual)" |
332 | @echo " - The Yocto Project Board Support Package" | ||
333 | @echo " Developer's Guide (bsp-guide)" | ||
332 | @echo " - The Yocto Project Development Manual (dev-manual)" | 334 | @echo " - The Yocto Project Development Manual (dev-manual)" |
333 | @echo " " | 335 | @echo " " |
334 | else | 336 | else |