#!/bin/csh -f
# John Williams, Nov  5 1993
# and David Young, 20 July 1994

set path = ( /usr/ccs/bin /opt/SUNWspro/bin $path )

foreach f (*.c)
    set Comm = ( cc -fsingle -O -o bin/sun4r5/${f:r}.so -G -K pic $f )
    echo $Comm
    $Comm
end
