#!/bin/csh -f
# Eric A. Brewer   11-25-92
# must be run in the augment directory

# build and test augment

echo ""
echo "****"
echo "****   Building augment"
echo "****"

make augment
if ($status) then
	echo "Unable to build augment"
	exit(1)
endif

echo ""
echo "****"
echo "****   Building augtest -- test program for augment"
echo "****"

make augtest
if ($status) then
	echo "Unable to build augtest"
	exit(1)
endif

echo ""
echo "****"
echo "****   Cleaning up directory"
echo "****"

make clean

echo ""
echo "****"
echo "****   Running test program"
echo "****"

./augtest



