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.
17 lines
381 B
17 lines
381 B
#!/bin/sh
|
|
#
|
|
# mkhtml.sh - Make html documentation from Texinfo input.
|
|
#
|
|
# Usage: mkhtml outdir
|
|
|
|
# Check that we are executed in the correct directory.
|
|
if [ ! -f libjit.texi ]; then
|
|
echo "Cannot find libjit.texi"
|
|
exit 1
|
|
fi
|
|
|
|
# Get the full pathname of the input file.
|
|
PATHNAME=`pwd`/libjit.texi
|
|
|
|
# Change to the output directory and execute "texi2html".
|
|
exec texi2html "$PATHNAME"
|
|
|