2013-03-25 14:28:08 +01:00
|
|
|
manual-update-lists:
|
|
|
|
$(Q)$(call MESSAGE,"Updating the manual lists...")
|
|
|
|
$(Q)BR2_DEFCONFIG="" TOPDIR=$(TOPDIR) O=$(O)/docs/manual/.build \
|
|
|
|
$(TOPDIR)/support/scripts/gen-manual-lists.py
|
|
|
|
|
2012-04-17 16:45:22 +02:00
|
|
|
################################################################################
|
|
|
|
# GENDOC -- generates the make targets needed to build a specific type of
|
|
|
|
# asciidoc documentation.
|
|
|
|
#
|
|
|
|
# argument 1 is the name of the document and must be a subdirectory of docs/;
|
|
|
|
# the top-level asciidoc file must have the same name
|
|
|
|
# argument 2 is the type of document to generate (-f argument of a2x)
|
|
|
|
# argument 3 is the document type as used in the make target
|
|
|
|
# argument 4 is the output file extension for the document type
|
|
|
|
# argument 5 is the human text for the document type
|
|
|
|
# argument 6 (optional) are extra arguments for a2x
|
|
|
|
#
|
|
|
|
# The variable <DOCUMENT_NAME>_SOURCES defines the dependencies.
|
|
|
|
################################################################################
|
|
|
|
define GENDOC_INNER
|
|
|
|
$(1): $(1)-$(3)
|
|
|
|
.PHONY: $(1)-$(3)
|
|
|
|
$(1)-$(3): $$(O)/docs/$(1)/$(1).$(4)
|
|
|
|
|
2013-03-25 14:28:08 +01:00
|
|
|
$$(O)/docs/$(1)/$(1).$(4): docs/$(1)/$(1).txt \
|
|
|
|
$$($(call UPPERCASE,$(1))_SOURCES) \
|
|
|
|
manual-update-lists
|
|
|
|
$(Q)$(call MESSAGE,"Generating $(5) $(1)...")
|
|
|
|
$(Q)mkdir -p $$(@D)/.build
|
|
|
|
$(Q)rsync -au docs/$(1)/*.txt $$(@D)/.build
|
2012-04-17 16:45:22 +02:00
|
|
|
$(Q)a2x $(6) -f $(2) -d book -L -r $(TOPDIR)/docs/images \
|
2013-03-25 14:28:08 +01:00
|
|
|
-D $$(@D) $$(@D)/.build/$(1).txt
|
|
|
|
-$(Q)rm -rf $$(@D)/.build
|
2012-04-17 16:45:22 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# GENDOC -- generates the make targets needed to build asciidoc documentation.
|
|
|
|
#
|
|
|
|
# argument 1 is the name of the document and must be a subdirectory of docs/;
|
|
|
|
# the top-level asciidoc file must have the same name
|
|
|
|
#
|
|
|
|
# The variable <DOCUMENT_NAME>_SOURCES defines the dependencies.
|
|
|
|
################################################################################
|
|
|
|
define GENDOC
|
2012-11-11 04:14:41 +01:00
|
|
|
$(call GENDOC_INNER,$(1),xhtml,html,html,HTML,--xsltproc-opts "--stringparam toc.section.depth 4")
|
2013-09-19 12:47:13 +02:00
|
|
|
$(call GENDOC_INNER,$(1),chunked,split-html,chunked,split HTML,--xsltproc-opts "--stringparam toc.section.depth 4")
|
2012-04-17 16:45:22 +02:00
|
|
|
$(call GENDOC_INNER,$(1),pdf,pdf,pdf,PDF,--dblatex-opts "-P latex.output.revhistory=0")
|
2013-09-19 12:47:13 +02:00
|
|
|
$(call GENDOC_INNER,$(1),text,txt,text,text)
|
|
|
|
$(call GENDOC_INNER,$(1),epub,epub,epub,ePUB)
|
2012-11-15 13:07:28 +01:00
|
|
|
clean: $(1)-clean
|
|
|
|
$(1)-clean:
|
2012-04-17 16:45:22 +02:00
|
|
|
$(Q)$(RM) -rf $(O)/docs/$(1)
|
2013-03-25 14:28:08 +01:00
|
|
|
.PHONY: $(1) $(1)-clean manual-update-lists
|
2012-04-17 16:45:22 +02:00
|
|
|
endef
|
|
|
|
|
2013-09-03 10:45:41 +02:00
|
|
|
MANUAL_SOURCES = $(sort $(wildcard docs/manual/*.txt) $(wildcard docs/images/*))
|
2012-04-17 16:45:22 +02:00
|
|
|
$(eval $(call GENDOC,manual))
|