blob: a8eef6c581cd6bd95ee0ae70137867197717a919 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh -e
#
# Libreboot documentation build script: plaintext
#
echo "@set docsdir ../" > docs/constants.texi
basedir="docs/manual/"
outfile="${basedir}libreboot.txt"
texinfo_src="docs/libreboot.texi"
[ -d docs/manual ] || mkdir docs/manual
echo "Writing manual: $outfile..."
makeinfo --no-warn --no-split --plaintext -o $outfile $texinfo_src
echo "Making $outfile.gz..."
gzip -f -9 -c $outfile > $outfile.gz
echo "Done."
|