#!/bin/tcsh -ef

foreach file (clean_all compile_all compile_and_clean_all compile_and_clean_release publish reformat reformat.awk test_all)
sed s/$1/$2/ $file > tmp.xxx
mv tmp.xxx $file
end
foreach file (clean_all compile_all compile_and_clean_all compile_and_clean_release publish reformat test_all)
chmod u+x $file
end
