611ec48ecb
There's an ISO9660 COPY tag for license info file; make use of it, factoring use/docs/license out while at that. One of the goals was to make it hold the reference to reference to GPL in regular builds and starterkits ;-)
22 lines
534 B
Makefile
22 lines
534 B
Makefile
# copy the packaged docs to image root
|
|
# packaged documentation sources:
|
|
# 1) branding-*-indexhtml
|
|
# 2) docs-* (should be installed elsewhere)
|
|
|
|
+docs: use/docs; @:
|
|
|
|
use/docs:
|
|
@$(call add_feature)
|
|
|
|
use/docs/indexhtml: use/docs use/branding
|
|
@$(call add,THE_BRANDING,indexhtml)
|
|
|
|
use/docs/manual: use/docs
|
|
@$(call xport,DOCS)
|
|
@$(call add,THE_PACKAGES,docs-$$(DOCS))
|
|
|
|
use/docs/license: use/docs use/branding/notes
|
|
@$(call set,META_LICENSE_FILE,license.all.html)
|
|
|
|
use/docs/full: use/docs/indexhtml use/docs/manual use/docs/license; @:
|