#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: doc2pdf
# Converts doc file to pdf file
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
##
###############################################################
system=$1
documenttype=$2
# Inform user
echo "Creating $system.pdf"
#Run pdflatex , bibtex and makeindex
pdflatex $system.doc > doc2pdf.log
bibtex $system >> doc2pdf.log
pdflatex $system.doc >> doc2pdf.log
pdflatex $system.doc >> doc2pdf.log
if [ "$documenttype" = "book" ]; then
makeindex $system >> doc2pdf.log
else
touch $system.ind
fi
pdflatex $system.doc >> doc2pdf.log
pdflatex $system.doc >> doc2pdf.log
# Make sure transformation succeeeds
exit 0