#! /bin/tcsh -f
find . -name '*.c' -print | sed 's/\/[a-zA-Z0-9_\.]*$//' | uniq > list.tmp

foreach p (`cat list.tmp`)
   (cd $p && u64cco)
end
