#!/bin/sh -e
#
# Libreboot documentation build script: html-one-page
#

echo "@set librebootbase `pwd`" > docs/constants.texi

basefile=`basename "$0"`
basedir="docs/manual/"
outfile="${basedir}libreboot_${basefile}.html"
texinfo_src="docs/libreboot.texi"

[ -d docs/manual ] || mkdir docs/manual

echo "Writing manual: $outfile..."
makeinfo --html --no-warn --no-split -o $outfile $texinfo_src

echo "Making $outfile.gz..."
gzip -f -9 -c $outfile > $outfile.gz 

echo "Done."