#!/bin/sh
# name: chtml.sh
# $Id: chtml.sh,v 1.3 1998/01/05 21:40:50 gjc Exp $
# Purpose: a version of the chtml command which will
#          work assuming that the following files are
#          in the same directory with it:
#            siod libsiod.so chtml-cmp.scm chtml.scm
#          Avoiding the need to have the scheme interpreter
#          installed in the standard place.
#            
mydir=`dirname $0`
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$mydir
SIOD_LIB=$mydir
export LD_LIBRARY_PATH SIOD_LIB
$mydir/siod -v01,-m2 $mydir/chtml-cmp.scm $*
