summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build/docs/alldocs
blob: 3f82bdced861e8c31bfad982b2aaca958b4c9b14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh -e
#
# Libreboot documentation build script: alldocs
#
# The build script has an 'all' option which doesn't work
# for docs--the html index needs to be built last.
#

script_dir="./resources/scripts/helpers/build/docs/"
build_docs ()
{
    ${script_dir}$1
    echo
}

# postscript and dvi are broken; need images in .eps format
# pdf works at least on Trisquel
build_docs clean
build_docs html
build_docs html-by-section
build_docs html-one-page
build_docs info
build_docs plaintext
build_docs pdf
#build_docs postscript
#build_docs dvi
build_docs index