Lines Matching refs:document
18 Although Buildroot only contains one document written in AsciiDoc, there
27 ==== +asciidoc-document+ tutorial
29 Whereas package infrastructures are suffixed with +-package+, the document
30 infrastructures are suffixed with +-document+. So, the AsciiDoc infrastructure
31 is named +asciidoc-document+.
33 Here is an example to render a simple AsciiDoc document.
38 03: # foo-document
43 08: $(eval $(call asciidoc-document))
46 On line 7, the Makefile declares what the sources of the document are.
47 Currently, it is expected that the document's sources are only local;
48 Buildroot will not attempt to download anything to render a document.
50 above is sufficient for a document with no sub-directory structure.
52 On line 8, we call the +asciidoc-document+ function, which generates all
53 the Makefile code necessary to render the document.
55 ==== +asciidoc-document+ reference
58 information is (assuming the document name is +foo+) :
60 * +FOO_SOURCES+, mandatory, defines the source files for the document.
67 host-packages) that must be built before building this document.
70 on hooks), that a document may set to define extra actions to be done at
80 components to generate the document. In AsciiDoc, it is possible to
93 03: # foo-document
107 17: echo "You need my-prog to generate the foo document"; \
115 25: echo "You need my-other-prog to generate the foo document as PDF"; \
121 31: $(eval $(call asciidoc-document))