mirror of https://github.com/ademakov/libjit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
558 B
30 lines
558 B
21 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# mkhtml.sh - Make html documentation from Texinfo input.
|
||
|
#
|
||
|
# Usage: mkhtml outdir
|
||
|
|
||
|
# Check the command-line.
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "Usage: $0 outdir"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# Check that we are executed in the correct directory.
|
||
|
if [ ! -f libjit.texi ]; then
|
||
|
echo "Cannot find libjit.texi"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# Create the output directory.
|
||
|
if [ ! -d "$1" ]; then
|
||
|
mkdir "$1"
|
||
|
fi
|
||
|
|
||
|
# Get the full pathname of the input file.
|
||
|
PATHNAME=`pwd`/libjit.texi
|
||
|
|
||
|
# Change to the output directory and execute "texi2html".
|
||
|
cd "$1"
|
||
|
exec texi2html -split_chapter "$PATHNAME"
|