#!/bin/csh

echo "Starting test_all"
foreach file (*.idl) 
echo $file
../idl2c $file
../../idl2otl/idl2otl $file:r
cc -c -I/opt/misc/include -I/users/c/chaos/include $file:r_COBS_.c
rm ${file:r}_COBS_.c
rm ${file:r}_COBS_.o
end
rm *.desc
echo "test_all execution finished"

