#!/bin/csh -f
rm *.o
rm eps2lib.a 
make 
foreach f (*.o)
echo $f
ar -r eps2lib.a $f
end
