#!/bin/csh -f
#
# MAKEALL
#
# Update everything in the PELKS directory
#
# Bertrand Meyer, 12 January 1995
#

echo "Updating the PELKS delivery..."
echo "First, prepare automatic indexing"
echo "----------------------------------------------"
fmbatch bin/makeindex
echo "-------- End index processing -----------"
echo " "
echo " "
echo "Next, do the FrameMaker processing"
echo "----------------------------------------------"
fmbatch bin/makemif
echo "-------- End FrameMaker processing -----------"
echo " "
echo " "
echo "Now, generate Postscript files"
echo "----------------------------------------------"
fmbatch bin/makepostscript
echo "-------- End Postscript generation  -----------"
echo " "
echo " "
echo "Produce ASCII files"
echo "----------------------------------------------"
fmbatch bin/makeascii
echo "-------- End ASCII generation  ---------------"
echo " "
echo " "
echo " "
echo "------ Ready now to generate the tar file -----"
bin/maketar
echo "----------- END PROCESSING --------------------"
